2021-07-12 13:52:25 +02:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
|
2020-07-19 17:51:49 +02:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "istioctl";
|
2021-08-14 12:09:40 +02:00
|
|
|
version = "1.11.0";
|
2020-07-19 17:51:49 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "istio";
|
|
|
|
repo = "istio";
|
|
|
|
rev = version;
|
2021-08-14 12:09:40 +02:00
|
|
|
sha256 = "sha256-pQ8Xhhjpcp9RAUUqEDNWRf9JI7xkDVh2PG2KB0lmScs=";
|
2020-07-19 17:51:49 +02:00
|
|
|
};
|
2021-08-14 12:09:40 +02:00
|
|
|
vendorSha256 = "sha256-PBMPTrTk5AzzELitSVQijHnx8YDCiZ7R+cpetUfe2KU=";
|
2020-07-19 17:51:49 +02:00
|
|
|
|
2020-08-04 02:26:27 +02:00
|
|
|
doCheck = false;
|
|
|
|
|
2021-07-12 13:52:25 +02:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
2020-07-29 11:45:08 +02:00
|
|
|
|
2020-07-29 13:50:59 +02:00
|
|
|
# Bundle release metadata
|
2021-08-26 08:45:51 +02:00
|
|
|
ldflags = let
|
2020-07-29 13:50:59 +02:00
|
|
|
attrs = [
|
|
|
|
"istio.io/pkg/version.buildVersion=${version}"
|
|
|
|
"istio.io/pkg/version.buildStatus=Nix"
|
|
|
|
"istio.io/pkg/version.buildTag=${version}"
|
|
|
|
"istio.io/pkg/version.buildHub=docker.io/istio"
|
|
|
|
];
|
2021-08-26 08:45:51 +02:00
|
|
|
in ["-s" "-w" "${lib.concatMapStringsSep " " (attr: "-X ${attr}") attrs}"];
|
2020-07-29 13:50:59 +02:00
|
|
|
|
2020-07-19 17:51:49 +02:00
|
|
|
subPackages = [ "istioctl/cmd/istioctl" ];
|
|
|
|
|
2020-08-02 11:20:00 +02:00
|
|
|
postInstall = ''
|
|
|
|
$out/bin/istioctl collateral --man --bash --zsh
|
|
|
|
installManPage *.1
|
|
|
|
installShellCompletion istioctl.bash
|
|
|
|
installShellCompletion --zsh _istioctl
|
|
|
|
'';
|
|
|
|
|
2020-07-19 17:51:49 +02:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Istio configuration command line utility for service operators to debug and diagnose their Istio mesh";
|
|
|
|
homepage = "https://istio.io/latest/docs/reference/commands/istioctl";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ veehaitch ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|