eksctl 0.129.0 -> 0.131.0 https://github.com/weaveworks/eksctl/releases attrpath: eksctl Checking auto update branch... No auto update branch exists Old version 0.129.0" not present in master derivation file with contents: { lib, buildGoModule, fetchFromGitHub, installShellFiles }: buildGoModule rec { pname = "eksctl"; version = "0.130.0"; src = fetchFromGitHub { owner = "weaveworks"; repo = pname; rev = version; sha256 = "sha256-SJI9EB0k45SJmWQ/pivlZMQdiE237vpLwNB2Y33ntrw="; }; vendorHash = "sha256-wrt8Mtek74ljCgp1Sxi/jKxCv61H7HqCLHXKrwS7ex4="; doCheck = false; subPackages = [ "cmd/eksctl" ]; tags = [ "netgo" "release" ]; ldflags = [ "-s" "-w" "-X github.com/weaveworks/eksctl/pkg/version.gitCommit=${src.rev}" "-X github.com/weaveworks/eksctl/pkg/version.buildDate=19700101-00:00:00" ]; nativeBuildInputs = [ installShellFiles ]; postInstall = '' installShellCompletion --cmd eksctl \ --bash <($out/bin/eksctl completion bash) \ --fish <($out/bin/eksctl completion fish) \ --zsh <($out/bin/eksctl completion zsh) ''; meta = with lib; { description = "A CLI for Amazon EKS"; homepage = "https://github.com/weaveworks/eksctl"; license = licenses.asl20; maintainers = with maintainers; [ xrelkd Chili-Man ]; }; }