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";
|
2022-05-28 05:31:56 +00:00
|
|
|
version = "0.99.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;
|
2022-05-28 05:31:56 +00:00
|
|
|
sha256 = "sha256-J2d3Uyc/gYciQaZJnOw0piO90ixtqgdnC0gprIoWmvs=";
|
2019-06-13 02:53:52 +00:00
|
|
|
};
|
|
|
|
|
2022-05-28 05:31:56 +00:00
|
|
|
vendorSha256 = "sha256-sRtFfJ7umVK8ruCpZ7TcTVcY9gr3Fldcf3KEdmbgkX4=";
|
2019-06-13 02:53:52 +00:00
|
|
|
|
2020-08-04 00:26:27 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
2019-06-13 02:53:52 +00:00
|
|
|
subPackages = [ "cmd/eksctl" ];
|
|
|
|
|
2021-08-07 04:58:00 +00:00
|
|
|
tags = [ "netgo" "release" ];
|
2019-06-13 02:53:52 +00:00
|
|
|
|
2021-08-07 04:58:00 +00:00
|
|
|
ldflags = [
|
2021-08-21 20:16:27 +00: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 00:13:34 +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 = ''
|
2022-04-09 00:56:30 +00:00
|
|
|
installShellCompletion --cmd eksctl \
|
|
|
|
--bash <($out/bin/eksctl completion bash) \
|
|
|
|
--fish <($out/bin/eksctl completion fish) \
|
|
|
|
--zsh <($out/bin/eksctl completion zsh)
|
2019-06-13 02:53:52 +00:00
|
|
|
'';
|
|
|
|
|
2020-03-27 07:33:21 +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;
|
2020-09-16 20:34:36 +00:00
|
|
|
maintainers = with maintainers; [ xrelkd Chili-Man ];
|
2019-06-13 02:53:52 +00:00
|
|
|
};
|
|
|
|
}
|