cilium-cli: 0.16.3 -> 0.16.4

Release: https://github.com/cilium/cilium-cli/releases/tag/v0.16.4

- Add superherointj as maintainer
This commit is contained in:
superherointj 2024-04-01 15:29:58 -03:00
parent 98f2a766ef
commit 83ea7cf15b

View File

@ -2,13 +2,13 @@
buildGoModule rec { buildGoModule rec {
pname = "cilium-cli"; pname = "cilium-cli";
version = "0.16.3"; version = "0.16.4";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "cilium"; owner = "cilium";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
hash = "sha256-WD0CUPl9Qkalhog2IbefMkiLiVZFW59X21sYH4hUqZs="; hash = "sha256-fhTjYhRCtJu18AGYF6hiTdRMEdlNO+DmDwh2hZBXzPk=";
}; };
vendorHash = null; vendorHash = null;
@ -37,11 +37,12 @@ buildGoModule rec {
--zsh <($out/bin/cilium completion zsh) --zsh <($out/bin/cilium completion zsh)
''; '';
meta = with lib; { meta = {
changelog = "https://github.com/cilium/cilium-cli/releases/tag/v${version}";
description = "CLI to install, manage & troubleshoot Kubernetes clusters running Cilium"; description = "CLI to install, manage & troubleshoot Kubernetes clusters running Cilium";
license = licenses.asl20; license = lib.licenses.asl20;
homepage = "https://www.cilium.io/"; homepage = "https://www.cilium.io/";
maintainers = with maintainers; [ humancalico bryanasdev000 qjoly ]; maintainers = with lib.maintainers; [ bryanasdev000 humancalico qjoly superherointj ];
mainProgram = "cilium"; mainProgram = "cilium";
}; };
} }