2021-07-12 11:52:25 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
|
2020-07-19 15:51:49 +00:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "istioctl";
|
2022-03-12 11:32:40 +00:00
|
|
|
version = "1.13.2";
|
2020-07-19 15:51:49 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "istio";
|
|
|
|
repo = "istio";
|
|
|
|
rev = version;
|
2022-03-12 11:32:40 +00:00
|
|
|
sha256 = "sha256-7YtszdwauTz9LfZ77d13fDU6vQm5hiJrIOiqpqIginQ=";
|
2020-07-19 15:51:49 +00:00
|
|
|
};
|
2022-03-12 11:32:40 +00:00
|
|
|
vendorSha256 = "sha256-AOcWkcw+2DcgBxvxRO/sdb339a7hmI7Oy5I4kW4oE+k=";
|
2020-07-19 15:51:49 +00:00
|
|
|
|
2021-07-12 11:52:25 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
2020-07-29 09:45:08 +00:00
|
|
|
|
2020-07-29 11:50:59 +00:00
|
|
|
# Bundle release metadata
|
2021-08-26 06:45:51 +00:00
|
|
|
ldflags = let
|
2020-07-29 11:50:59 +00: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 06:45:51 +00:00
|
|
|
in ["-s" "-w" "${lib.concatMapStringsSep " " (attr: "-X ${attr}") attrs}"];
|
2020-07-29 11:50:59 +00:00
|
|
|
|
2020-07-19 15:51:49 +00:00
|
|
|
subPackages = [ "istioctl/cmd/istioctl" ];
|
|
|
|
|
2020-08-02 09:20:00 +00:00
|
|
|
postInstall = ''
|
|
|
|
$out/bin/istioctl collateral --man --bash --zsh
|
|
|
|
installManPage *.1
|
|
|
|
installShellCompletion istioctl.bash
|
|
|
|
installShellCompletion --zsh _istioctl
|
|
|
|
'';
|
|
|
|
|
2020-07-19 15:51:49 +00: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;
|
2022-04-06 19:48:18 +00:00
|
|
|
maintainers = with maintainers; [ superherointj bryanasdev000 veehaitch ];
|
2020-07-19 15:51:49 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|