mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
52 lines
1.5 KiB
Nix
52 lines
1.5 KiB
Nix
{ lib, buildGoModule, fetchFromGitHub, go-bindata, installShellFiles }:
|
|
|
|
buildGoModule rec {
|
|
pname = "istioctl";
|
|
version = "1.7.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "istio";
|
|
repo = "istio";
|
|
rev = version;
|
|
sha256 = "1w0ddz2am053bpi0jrn5v3b76jf2z4nl7zv0i1z2v9xcx59bxkac";
|
|
};
|
|
vendorSha256 = "02l13hzk5aikpylalsm35v27cljcl4z0qka9a4m125bc4rj2kp7k";
|
|
|
|
doCheck = false;
|
|
|
|
nativeBuildInputs = [ go-bindata installShellFiles ];
|
|
|
|
# Bundle charts
|
|
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"
|
|
];
|
|
in ["-ldflags=-s -w ${lib.concatMapStringsSep " " (attr: "-X ${attr}") attrs}"];
|
|
|
|
subPackages = [ "istioctl/cmd/istioctl" ];
|
|
|
|
postInstall = ''
|
|
$out/bin/istioctl collateral --man --bash --zsh
|
|
installManPage *.1
|
|
installShellCompletion istioctl.bash
|
|
installShellCompletion --zsh _istioctl
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|