about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/istioctl
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2020-08-02 04:20:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2020-08-02 04:20:00 -0500
commitbc742896072e0d3b52ac98b1d56298668f41f1a5 (patch)
tree972ae5194278bacd26aa4a8e1789f7f74bbb04ce /pkgs/applications/networking/cluster/istioctl
parente6ae7c302961b5e5f15d8a25ad33d70ffe85a190 (diff)
istioctl: install completions
Diffstat (limited to 'pkgs/applications/networking/cluster/istioctl')
-rw-r--r--pkgs/applications/networking/cluster/istioctl/default.nix13
1 files changed, 10 insertions, 3 deletions
diff --git a/pkgs/applications/networking/cluster/istioctl/default.nix b/pkgs/applications/networking/cluster/istioctl/default.nix
index d6d92e0569849..e04d799248ef7 100644
--- a/pkgs/applications/networking/cluster/istioctl/default.nix
+++ b/pkgs/applications/networking/cluster/istioctl/default.nix
@@ -1,4 +1,4 @@
-{ lib, buildGoModule, fetchFromGitHub, go-bindata }:
+{ lib, buildGoModule, fetchFromGitHub, go-bindata, installShellFiles }:
 
 buildGoModule rec {
   pname = "istioctl";
@@ -12,7 +12,7 @@ buildGoModule rec {
   };
   vendorSha256 = "0cc0lmjsxrn3f78k95wklf3yn5k7h8slwnwmssy1i1h0bkcg1bai";
 
-  nativeBuildInputs = [ go-bindata ];
+  nativeBuildInputs = [ go-bindata installShellFiles ];
 
   # Bundle charts
   preBuild = ''
@@ -28,10 +28,17 @@ buildGoModule rec {
       "istio.io/pkg/version.buildTag=${version}"
       "istio.io/pkg/version.buildHub=docker.io/istio"
     ];
-  in ["-ldflags=${lib.concatMapStringsSep " " (attr: "-X ${attr}") attrs}"];
+  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";