diff --git a/pkgs/applications/networking/cluster/helm/default.nix b/pkgs/applications/networking/cluster/helm/default.nix index 058ad004a217..2ebc58852727 100644 --- a/pkgs/applications/networking/cluster/helm/default.nix +++ b/pkgs/applications/networking/cluster/helm/default.nix @@ -1,16 +1,23 @@ -{ lib, buildGoModule, fetchFromGitHub, installShellFiles, testers, kubernetes-helm }: +{ + lib, + buildGoModule, + fetchFromGitHub, + installShellFiles, + testers, + kubernetes-helm, +}: buildGoModule rec { pname = "kubernetes-helm"; - version = "3.15.3"; + version = "3.15.4"; src = fetchFromGitHub { owner = "helm"; repo = "helm"; rev = "v${version}"; - sha256 = "sha256-m5k1MUncx9xSGu49Qjy1MByl3h6Qz7VCNrveqRVjtdQ="; + sha256 = "sha256-hFQX9v37cXJ4wv1aQnBOBlmVWUiZuKrjCJ/R4dzUa/4="; }; - vendorHash = "sha256-2q5IziYSW2FFfRZvWKz6dVnJfauRlE9lRrb4/l2EGC0="; + vendorHash = "sha256-lR/6n+EH4Nhs1Q/BqEkMlugM74NtEtT+SKQQHc6+Zjk="; subPackages = [ "cmd/helm" ]; ldflags = [ @@ -68,6 +75,13 @@ buildGoModule rec { description = "Package manager for kubernetes"; mainProgram = "helm"; license = licenses.asl20; - maintainers = with maintainers; [ rlupton20 edude03 saschagrunert Frostman Chili-Man techknowlogick ]; + maintainers = with maintainers; [ + rlupton20 + edude03 + saschagrunert + Frostman + Chili-Man + techknowlogick + ]; }; }