nixpkgs/pkgs/tools/admin/eksctl/default.nix

42 lines
1 KiB
Nix
Raw Normal View History

2020-07-03 09:20:00 +00:00
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
2019-06-13 02:53:52 +00:00
2019-07-08 23:03:22 +00:00
buildGoModule rec {
2019-06-13 02:53:52 +00:00
pname = "eksctl";
2020-08-03 00:13:34 +00:00
version = "0.25.0";
2019-06-13 02:53:52 +00:00
src = fetchFromGitHub {
owner = "weaveworks";
2019-07-12 02:48:08 +00:00
repo = pname;
2019-06-13 02:53:52 +00:00
rev = version;
2020-08-03 00:13:34 +00:00
sha256 = "1p3dzzbf840csqlgxyykmyg13z0nkzy4nkqq9y8jlpdm745vcryv";
2019-06-13 02:53:52 +00:00
};
2020-08-03 00:13:34 +00:00
vendorSha256 = "1msid4857wsh4qp1f7nyrmpzjv3sklh49cl7a9c1a3qr9m99w4yb";
2019-06-13 02:53:52 +00:00
doCheck = false;
2019-06-13 02:53:52 +00:00
subPackages = [ "cmd/eksctl" ];
2019-08-06 03:07:45 +00:00
buildFlags = [ "-tags netgo" "-tags release" ];
2019-06-13 02:53:52 +00:00
2020-08-03 00:13:34 +00:00
buildFlagsArray = [
"-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"
];
2020-07-03 09:21:00 +00:00
2020-07-03 09:20:00 +00:00
nativeBuildInputs = [ installShellFiles ];
2019-07-08 23:03:22 +00:00
2020-07-03 09:20:00 +00:00
postInstall = ''
for shell in bash fish zsh; do
$out/bin/eksctl completion $shell > eksctl.$shell
installShellCompletion eksctl.$shell
done
2019-06-13 02:53:52 +00:00
'';
meta = with lib; {
2019-06-13 02:53:52 +00:00
description = "A CLI for Amazon EKS";
homepage = "https://github.com/weaveworks/eksctl";
license = licenses.asl20;
maintainers = with maintainers; [ xrelkd ];
};
}