2019-07-09 00:03:22 +01:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
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";
|
2019-08-08 04:05:25 +01:00
|
|
|
version = "0.3.1";
|
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;
|
2019-08-08 04:05:25 +01:00
|
|
|
sha256 = "1xinkr9xnbfbr58ci7hprabqv0p292x016knbb7fqxzb8043f9lh";
|
2019-06-13 03:53:52 +01:00
|
|
|
};
|
|
|
|
|
2019-08-06 04:07:45 +01:00
|
|
|
modSha256 = "1y0pkd588wsqhqywlv1yd5mlr4limybfpdj2g3pbxw09hv18ysa4";
|
2019-06-13 03:53:52 +01:00
|
|
|
|
|
|
|
subPackages = [ "cmd/eksctl" ];
|
|
|
|
|
2019-08-06 04:07:45 +01:00
|
|
|
buildFlags = [ "-tags netgo" "-tags release" ];
|
2019-06-13 03:53:52 +01:00
|
|
|
|
|
|
|
postInstall =
|
|
|
|
''
|
2019-07-09 00:03:22 +01:00
|
|
|
mkdir -p "$out/share/"{bash-completion/completions,zsh/site-functions}
|
|
|
|
|
|
|
|
$out/bin/eksctl completion bash > "$out/share/bash-completion/completions/eksctl"
|
|
|
|
$out/bin/eksctl completion zsh > "$out/share/zsh/site-functions/_eksctl"
|
2019-06-13 03:53:52 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A CLI for Amazon EKS";
|
|
|
|
homepage = "https://github.com/weaveworks/eksctl";
|
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ xrelkd ];
|
|
|
|
};
|
|
|
|
}
|