eksctl: 0.91.0 -> 0.92.0

main
xrelkd 2 years ago
parent 1e29572c57
commit 9dec3ecd70
No known key found for this signature in database
GPG Key ID: BAB7A457C1D1D6B3
  1. 14
      pkgs/tools/admin/eksctl/default.nix

@ -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…
Cancel
Save