2020-07-03 11:20:00 +02:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub, installShellFiles }:
|
2019-06-13 04:53:52 +02:00
|
|
|
|
2019-07-09 01:03:22 +02:00
|
|
|
buildGoModule rec {
|
2019-06-13 04:53:52 +02:00
|
|
|
pname = "eksctl";
|
2021-12-06 17:40:11 +01:00
|
|
|
version = "0.76.0";
|
2019-06-13 04:53:52 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "weaveworks";
|
2019-07-12 04:48:08 +02:00
|
|
|
repo = pname;
|
2019-06-13 04:53:52 +02:00
|
|
|
rev = version;
|
2021-12-06 17:40:11 +01:00
|
|
|
sha256 = "sha256-KhAS8JUM6dobcSJ/QaRhxv2jNpn6AFqiDRCdxeKHwZE=";
|
2019-06-13 04:53:52 +02:00
|
|
|
};
|
|
|
|
|
2022-01-31 05:28:29 +01:00
|
|
|
vendorSha256 = "sha256-bUbStgIJeqzBkoSffJ8ZvqVtOMJ/mqxIIB/Fq9GhoXc=";
|
2019-06-13 04:53:52 +02:00
|
|
|
|
2020-08-04 02:26:27 +02:00
|
|
|
doCheck = false;
|
|
|
|
|
2019-06-13 04:53:52 +02:00
|
|
|
subPackages = [ "cmd/eksctl" ];
|
|
|
|
|
2021-08-07 06:58:00 +02:00
|
|
|
tags = [ "netgo" "release" ];
|
2019-06-13 04:53:52 +02:00
|
|
|
|
2021-08-07 06:58:00 +02:00
|
|
|
ldflags = [
|
2021-08-21 22:16:27 +02: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 02:13:34 +02:00
|
|
|
];
|
2020-07-03 11:21:00 +02:00
|
|
|
|
2020-07-03 11:20:00 +02:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
2019-07-09 01:03:22 +02:00
|
|
|
|
2020-07-03 11:20:00 +02:00
|
|
|
postInstall = ''
|
|
|
|
for shell in bash fish zsh; do
|
|
|
|
$out/bin/eksctl completion $shell > eksctl.$shell
|
|
|
|
installShellCompletion eksctl.$shell
|
|
|
|
done
|
2019-06-13 04:53:52 +02:00
|
|
|
'';
|
|
|
|
|
2020-03-27 08:33:21 +01:00
|
|
|
meta = with lib; {
|
2019-06-13 04:53:52 +02:00
|
|
|
description = "A CLI for Amazon EKS";
|
|
|
|
homepage = "https://github.com/weaveworks/eksctl";
|
|
|
|
license = licenses.asl20;
|
2020-09-16 22:34:36 +02:00
|
|
|
maintainers = with maintainers; [ xrelkd Chili-Man ];
|
2019-06-13 04:53:52 +02:00
|
|
|
};
|
|
|
|
}
|