Merge pull request #215452 from azuwis/helmfile

helmfile: 0.145.2 -> 0.150.0

authored by

Nick Cao and committed by
GitHub
00365e96 9bc97c17

+6 -5
+6 -5
pkgs/applications/networking/cluster/helmfile/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "helmfile"; 5 - version = "0.145.2"; 5 + version = "0.150.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "helmfile"; 9 9 repo = "helmfile"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-ipGMGby7qUoFJNc+7+Gq+JaBUdxm19NwhklWsTpslVI="; 11 + sha256 = "sha256-7wCt+JAuozsd+LifLArfPNwiKK/tDvgwpIwVCW4nU3Y="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-031Xdr3u35uirDBZhExdh8PMAZa1gfMTC2II8VMbr6Q="; 14 + vendorSha256 = "sha256-vLLS+/Xfnlt6cvkNvXKX3DVLku1Q4bRCiv2vMTfOnfw="; 15 15 16 16 doCheck = false; 17 17 ··· 23 23 24 24 postInstall = '' 25 25 installShellCompletion --cmd helmfile \ 26 - --bash ./autocomplete/helmfile_bash_autocomplete \ 27 - --zsh ./autocomplete/helmfile_zsh_autocomplete 26 + --bash <($out/bin/helmfile completion bash) \ 27 + --fish <($out/bin/helmfile completion fish) \ 28 + --zsh <($out/bin/helmfile completion zsh) 28 29 ''; 29 30 30 31 meta = {