about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorDaniƫl de Kok <me@danieldk.eu>2020-07-20 19:06:55 +0200
committerGitHub <noreply@github.com>2020-07-20 19:06:55 +0200
commit29711bb90541363a7dc8b56328aa08f38dd3b773 (patch)
tree06cef7f2082368be33e781807fff5e86ae7e2672 /pkgs/applications
parent4105f1340b4bd64632661be4acf175d3a3459ecf (diff)
parent33c774347e10483fa792192baac7343e28d17fc5 (diff)
Merge pull request #93484 from veehaitch/istioctl-1.6.5
istioctl: init at 1.6.5
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/cluster/istioctl/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/applications/networking/cluster/istioctl/default.nix b/pkgs/applications/networking/cluster/istioctl/default.nix
new file mode 100644
index 0000000000000..90ce1d82f4906
--- /dev/null
+++ b/pkgs/applications/networking/cluster/istioctl/default.nix
@@ -0,0 +1,24 @@
+{ lib, buildGoModule, fetchFromGitHub }:
+
+buildGoModule rec {
+  pname = "istioctl";
+  version = "1.6.5";
+
+  src = fetchFromGitHub {
+    owner = "istio";
+    repo = "istio";
+    rev = version;
+    sha256 = "0xga0vjr2nfbxwbawly8vg9vnpavxbmc1agg2a3cp1ncmzfrgpcx";
+  };
+  vendorSha256 = "15l9z2a8p46jvmkl0vvm6s196mlics0qgmpm3yq3bn6cqnybdsij";
+
+  subPackages = [ "istioctl/cmd/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;
+  };
+}