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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1.3 KiB
Nix
Raw Normal View History

{ 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
nativeBuildInputs = [ installShellFiles ];
2020-07-29 09:45:08 +00:00
# Bundle release metadata
2021-08-26 06:45:51 +00: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 06:45:51 +00:00
in ["-s" "-w" "${lib.concatMapStringsSep " " (attr: "-X ${attr}") attrs}"];
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;
maintainers = with maintainers; [ superherointj bryanasdev000 veehaitch ];
2020-07-19 15:51:49 +00:00
platforms = platforms.unix;
};
}