eksctl: 0.91.0 -> 0.92.0
This commit is contained in:
parent
1e29572c57
commit
9dec3ecd70
1 changed files with 7 additions and 7 deletions
|
@ -2,16 +2,16 @@
|
|||
|
||||
buildGoModule rec {
|
||||
pname = "eksctl";
|
||||
version = "0.91.0";
|
||||
version = "0.92.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "weaveworks";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "sha256-Hz/joHOzy71ZtbpoTjomccSgc49VyWACTC9EwSiDpzc=";
|
||||
sha256 = "sha256-CsOR5S2FpIE/T1N/wLzXs5ltuLkice0YRKgdZUTz3ic=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-rkEVtIHXD5lXj8r89vhoWhJZF3unvwB43Zz3jBHRjYU=";
|
||||
vendorSha256 = "sha256-gNmIBjGG/EieNNjC7XLOD/SXQm96kRxbiT2JmdaPrh4=";
|
||||
|
||||
doCheck = false;
|
||||
|
||||
|
@ -29,10 +29,10 @@ buildGoModule rec {
|
|||
nativeBuildInputs = [ installShellFiles ];
|
||||
|
||||
postInstall = ''
|
||||
for shell in bash fish zsh; do
|
||||
$out/bin/eksctl completion $shell > eksctl.$shell
|
||||
installShellCompletion eksctl.$shell
|
||||
done
|
||||
installShellCompletion --cmd eksctl \
|
||||
--bash <($out/bin/eksctl completion bash) \
|
||||
--fish <($out/bin/eksctl completion fish) \
|
||||
--zsh <($out/bin/eksctl completion zsh)
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
|
|
Loading…
Reference in a new issue