3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/admin/eksctl/default.nix

45 lines
1 KiB
Nix
Raw Normal View History

2020-07-03 10:20:00 +01:00
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
2019-06-13 03:53:52 +01:00
2019-07-09 00:03:22 +01:00
buildGoModule rec {
2019-06-13 03:53:52 +01:00
pname = "eksctl";
2021-11-03 01:47:42 +00:00
version = "0.71.0";
2019-06-13 03:53:52 +01:00
src = fetchFromGitHub {
owner = "weaveworks";
2019-07-12 03:48:08 +01:00
repo = pname;
2019-06-13 03:53:52 +01:00
rev = version;
2021-11-03 01:47:42 +00:00
sha256 = "sha256-tXsMBry7KtzIhKFOjx30YhyXo2T+oA2RiKf1Yr2uWOI=";
2019-06-13 03:53:52 +01:00
};
2021-11-03 01:47:42 +00:00
vendorSha256 = "sha256-6egcoQEUe9OU5k0m8GVMU3EMStA9ICE7GiBSOj0olmY=";
2019-06-13 03:53:52 +01:00
doCheck = false;
2019-06-13 03:53:52 +01:00
subPackages = [ "cmd/eksctl" ];
tags = [ "netgo" "release" ];
2019-06-13 03:53:52 +01:00
ldflags = [
2021-08-21 21:16:27 +01:00
"-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-08-03 01:13:34 +01:00
];
2020-07-03 10:21:00 +01:00
2020-07-03 10:20:00 +01:00
nativeBuildInputs = [ installShellFiles ];
2019-07-09 00:03:22 +01:00
2020-07-03 10:20:00 +01:00
postInstall = ''
for shell in bash fish zsh; do
$out/bin/eksctl completion $shell > eksctl.$shell
installShellCompletion eksctl.$shell
done
2019-06-13 03:53:52 +01:00
'';
meta = with lib; {
2019-06-13 03:53:52 +01:00
description = "A CLI for Amazon EKS";
homepage = "https://github.com/weaveworks/eksctl";
license = licenses.asl20;
2020-09-16 21:34:36 +01:00
maintainers = with maintainers; [ xrelkd Chili-Man ];
2019-06-13 03:53:52 +01:00
};
}