Merge pull request #215452 from azuwis/helmfile

helmfile: 0.145.2 -> 0.150.0
This commit is contained in:
Nick Cao 2023-02-12 09:00:25 +08:00 committed by GitHub
commit 00365e9686
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,16 +2,16 @@
buildGoModule rec {
pname = "helmfile";
version = "0.145.2";
version = "0.150.0";
src = fetchFromGitHub {
owner = "helmfile";
repo = "helmfile";
rev = "v${version}";
sha256 = "sha256-ipGMGby7qUoFJNc+7+Gq+JaBUdxm19NwhklWsTpslVI=";
sha256 = "sha256-7wCt+JAuozsd+LifLArfPNwiKK/tDvgwpIwVCW4nU3Y=";
};
vendorSha256 = "sha256-031Xdr3u35uirDBZhExdh8PMAZa1gfMTC2II8VMbr6Q=";
vendorSha256 = "sha256-vLLS+/Xfnlt6cvkNvXKX3DVLku1Q4bRCiv2vMTfOnfw=";
doCheck = false;
@ -23,8 +23,9 @@ buildGoModule rec {
postInstall = ''
installShellCompletion --cmd helmfile \
--bash ./autocomplete/helmfile_bash_autocomplete \
--zsh ./autocomplete/helmfile_zsh_autocomplete
--bash <($out/bin/helmfile completion bash) \
--fish <($out/bin/helmfile completion fish) \
--zsh <($out/bin/helmfile completion zsh)
'';
meta = {