nixpkgs/pkgs/applications/networking/cluster/istioctl/default.nix

46 lines
1.3 KiB
Nix
Raw Normal View History

{ 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
doCheck = false;
nativeBuildInputs = [ installShellFiles ];
2020-07-29 11:45:08 +02:00
# Bundle release metadata
2021-08-26 08:45:51 +02:00
ldflags = let
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-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;
};
}