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 Permalink Normal View History

{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
2020-07-19 17:51:49 +02:00
buildGoModule rec {
pname = "istioctl";
2024-03-14 13:45:25 +01:00
version = "1.21.0";
2020-07-19 17:51:49 +02:00
src = fetchFromGitHub {
owner = "istio";
repo = "istio";
rev = version;
2024-03-14 13:45:25 +01:00
hash = "sha256-d+4WiMjP9L9tMrShTadXA1k/l1U3jYj/ihP0g3HuYRE=";
2020-07-19 17:51:49 +02:00
};
2024-03-14 13:45:25 +01:00
vendorHash = "sha256-8nvcxBF+ygWkMLbGwJvj1NjGL06xh6mNZvaEbZJw0TM=";
2020-07-19 17:51:49 +02:00
nativeBuildInputs = [ installShellFiles ];
2020-07-29 11:45:08 +02:00
# Bundle release metadata
2021-08-26 08:45:51 +02:00
ldflags = let
attrs = [
2023-12-02 21:02:49 +01: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 08:45:51 +02:00
in ["-s" "-w" "${lib.concatMapStringsSep " " (attr: "-X ${attr}") attrs}"];
2020-07-19 17:51:49 +02:00
subPackages = [ "istioctl/cmd/istioctl" ];
doInstallCheck = true;
installCheckPhase = ''
$out/bin/istioctl version --remote=false | grep ${version} > /dev/null
'';
2020-08-02 11:20:00 +02:00
postInstall = ''
$out/bin/istioctl collateral --man --bash --zsh
installManPage *.1
installShellCompletion istioctl.bash
installShellCompletion --zsh _istioctl
'';
2020-07-19 17:51:49 +02: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 17:51:49 +02:00
homepage = "https://istio.io/latest/docs/reference/commands/istioctl";
license = licenses.asl20;
2022-10-04 19:06:48 +02:00
maintainers = with maintainers; [ bryanasdev000 veehaitch ];
2020-07-19 17:51:49 +02:00
};
}