Merge pull request #250921 from QJoly/cilium

cilium-cli: 0.14.3 -> 0.15.6

authored by Matthias Beyer and committed by GitHub bc1e02d1 3cf83b95

+4 -4
+4 -4
pkgs/applications/networking/cluster/cilium/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "cilium-cli"; 5 - version = "0.14.3"; 5 + version = "0.15.6"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "cilium"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-vH+wQ3pPz70jc3QzD/0vbKMqQtYak8UGoQmEgeYbFbk="; 11 + hash = "sha256-0y07EPF/1oq4FqiJFNZgnUeesJzU0+jxlQ4zg1M5Xzk="; 12 12 }; 13 13 14 14 vendorHash = null; ··· 17 17 18 18 ldflags = [ 19 19 "-s" "-w" 20 - "-X github.com/cilium/cilium-cli/internal/cli/cmd.Version=${version}" 20 + "-X github.com/cilium/cilium-cli/cli.Version=${version}" 21 21 ]; 22 22 23 23 # Required to workaround install check error: ··· 41 41 description = "CLI to install, manage & troubleshoot Kubernetes clusters running Cilium"; 42 42 license = licenses.asl20; 43 43 homepage = "https://www.cilium.io/"; 44 - maintainers = with maintainers; [ humancalico bryanasdev000 ]; 44 + maintainers = with maintainers; [ humancalico bryanasdev000 qjoly ]; 45 45 mainProgram = "cilium"; 46 46 }; 47 47 }