summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2023-08-24 09:32:09 +0200
committerGitHub <noreply@github.com>2023-08-24 09:32:09 +0200
commitbc1e02d1bae1de0bf2b59b55abacb847197ff338 (patch)
tree4ce425db6ea8135639edaf47022bb1eac9c809e5 /pkgs/applications
parent3cf83b955e5e394b9ffe7b2af5852a5e23e42600 (diff)
parent162c8d3d1d4b7999cc6d56474d3df556c64b0ba7 (diff)
downloadnixpkgs-bc1e02d1bae1de0bf2b59b55abacb847197ff338.tar
nixpkgs-bc1e02d1bae1de0bf2b59b55abacb847197ff338.tar.gz
nixpkgs-bc1e02d1bae1de0bf2b59b55abacb847197ff338.tar.bz2
nixpkgs-bc1e02d1bae1de0bf2b59b55abacb847197ff338.tar.lz
nixpkgs-bc1e02d1bae1de0bf2b59b55abacb847197ff338.tar.xz
nixpkgs-bc1e02d1bae1de0bf2b59b55abacb847197ff338.tar.zst
nixpkgs-bc1e02d1bae1de0bf2b59b55abacb847197ff338.zip
Merge pull request #250921 from QJoly/cilium
cilium-cli: 0.14.3 -> 0.15.6
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/networking/cluster/cilium/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/networking/cluster/cilium/default.nix b/pkgs/applications/networking/cluster/cilium/default.nix
index 69eae1d73dd..e1a35810de7 100644
--- a/pkgs/applications/networking/cluster/cilium/default.nix
+++ b/pkgs/applications/networking/cluster/cilium/default.nix
@@ -2,13 +2,13 @@
 
 buildGoModule rec {
   pname = "cilium-cli";
-  version = "0.14.3";
+  version = "0.15.6";
 
   src = fetchFromGitHub {
     owner = "cilium";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-vH+wQ3pPz70jc3QzD/0vbKMqQtYak8UGoQmEgeYbFbk=";
+    hash = "sha256-0y07EPF/1oq4FqiJFNZgnUeesJzU0+jxlQ4zg1M5Xzk=";
   };
 
   vendorHash = null;
@@ -17,7 +17,7 @@ buildGoModule rec {
 
   ldflags = [
     "-s" "-w"
-    "-X github.com/cilium/cilium-cli/internal/cli/cmd.Version=${version}"
+    "-X github.com/cilium/cilium-cli/cli.Version=${version}"
   ];
 
   # Required to workaround install check error:
@@ -41,7 +41,7 @@ buildGoModule rec {
     description = "CLI to install, manage & troubleshoot Kubernetes clusters running Cilium";
     license = licenses.asl20;
     homepage = "https://www.cilium.io/";
-    maintainers = with maintainers; [ humancalico bryanasdev000 ];
+    maintainers = with maintainers; [ humancalico bryanasdev000 qjoly ];
     mainProgram = "cilium";
   };
 }