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.

49 lines
1.4 KiB
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
2020-07-19 15:51:49 +00:00
buildGoModule rec {
pname = "istioctl";
2024-04-22 22:24:04 +00:00
version = "1.21.2";
2020-07-19 15:51:49 +00:00
src = fetchFromGitHub {
owner = "istio";
repo = "istio";
rev = version;
2024-04-22 22:24:04 +00:00
hash = "sha256-U0SCjozy968pcXMGyUgM47VGYYNwPq8wOzTnKp49ZY4=";
2020-07-19 15:51:49 +00:00
};
2024-04-09 01:17:03 +00:00
vendorHash = "sha256-23t1xJPRip0ojXmUl1qlk6QJsYHT+9EAS080m6c0d6U=";
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 = [
2023-12-02 20:02:49 +00:00
"istio.io/istio/pkg/version.buildVersion=${version}"
"istio.io/istio/pkg/version.buildStatus=Nix"
"istio.io/istio/pkg/version.buildTag=${version}"
"istio.io/istio/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" ];
doInstallCheck = true;
installCheckPhase = ''
$out/bin/istioctl version --remote=false | grep ${version} > /dev/null
'';
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";
mainProgram = "istioctl";
2020-07-19 15:51:49 +00:00
homepage = "https://istio.io/latest/docs/reference/commands/istioctl";
license = licenses.asl20;
2022-10-04 17:06:48 +00:00
maintainers = with maintainers; [ bryanasdev000 veehaitch ];
2020-07-19 15:51:49 +00:00
};
}