2021-07-12 12:52:25 +01:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
|
2020-07-19 16:51:49 +01:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "istioctl";
|
2022-02-24 11:06:19 +00:00
|
|
|
version = "1.13.1";
|
2020-07-19 16:51:49 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "istio";
|
|
|
|
repo = "istio";
|
|
|
|
rev = version;
|
2022-02-24 11:06:19 +00:00
|
|
|
sha256 = "sha256-lFuDFuzart7uvs6NGNvNYh7JRF5ROx0V8uYoThF2mIU=";
|
2020-07-19 16:51:49 +01:00
|
|
|
};
|
2022-02-24 11:06:19 +00:00
|
|
|
vendorSha256 = "sha256-cVbQUWgreVy5m6OdS+Ik/xvUuedlI75gM9zq4qto+gY=";
|
2020-07-19 16:51:49 +01:00
|
|
|
|
2020-08-04 01:26:27 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
2021-07-12 12:52:25 +01:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
2020-07-29 10:45:08 +01:00
|
|
|
|
2020-07-29 12:50:59 +01:00
|
|
|
# Bundle release metadata
|
2021-08-26 07:45:51 +01:00
|
|
|
ldflags = let
|
2020-07-29 12:50:59 +01: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 07:45:51 +01:00
|
|
|
in ["-s" "-w" "${lib.concatMapStringsSep " " (attr: "-X ${attr}") attrs}"];
|
2020-07-29 12:50:59 +01:00
|
|
|
|
2020-07-19 16:51:49 +01:00
|
|
|
subPackages = [ "istioctl/cmd/istioctl" ];
|
|
|
|
|
2020-08-02 10:20:00 +01:00
|
|
|
postInstall = ''
|
|
|
|
$out/bin/istioctl collateral --man --bash --zsh
|
|
|
|
installManPage *.1
|
|
|
|
installShellCompletion istioctl.bash
|
|
|
|
installShellCompletion --zsh _istioctl
|
|
|
|
'';
|
|
|
|
|
2020-07-19 16:51:49 +01: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;
|
|
|
|
};
|
|
|
|
}
|