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

52 lines
1.5 KiB
Nix
Raw Normal View History

2020-08-02 09:20:00 +00:00
{ lib, buildGoModule, fetchFromGitHub, go-bindata, installShellFiles }:
2020-07-19 15:51:49 +00:00
buildGoModule rec {
pname = "istioctl";
2020-08-01 11:58:55 +00:00
version = "1.6.6";
2020-07-19 15:51:49 +00:00
src = fetchFromGitHub {
owner = "istio";
repo = "istio";
rev = version;
2020-08-01 11:58:55 +00:00
sha256 = "0njchcb58lxk0cixk2rz4qj7b0zpp6zf3i5dda43j4hfsb37mifj";
2020-07-19 15:51:49 +00:00
};
2020-08-01 11:58:55 +00:00
vendorSha256 = "0cc0lmjsxrn3f78k95wklf3yn5k7h8slwnwmssy1i1h0bkcg1bai";
2020-07-19 15:51:49 +00:00
doCheck = false;
2020-08-02 09:20:00 +00:00
nativeBuildInputs = [ go-bindata installShellFiles ];
2020-07-29 09:45:08 +00:00
# Bundle charts
2020-07-29 09:45:08 +00:00
preBuild = ''
patchShebangs operator/scripts
operator/scripts/create_assets_gen.sh
'';
# Bundle release metadata
buildFlagsArray = 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"
];
2020-08-02 09:20:00 +00:00
in ["-ldflags=-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; [ veehaitch ];
platforms = platforms.unix;
};
}