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

38 lines
1,015 B
Nix
Raw Normal View History

2020-03-21 11:01:00 +01:00
{ stdenv, buildGoModule, fetchFromGitHub, Security }:
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";
2020-03-14 20:37:56 +01:00
version = "0.15.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;
2020-03-14 20:37:56 +01:00
sha256 = "1193i30k2m7cibn79xw51i2lxg90f5i97h8sbjiv0hr9g502r2qf";
2019-06-13 04:53:52 +02:00
};
2020-03-14 20:37:56 +01:00
modSha256 = "0f8dlcp3q84fa5dnnzx4347ngb1raw1mxkcqpz2s3zq6d1kv0nvf";
2019-06-13 04:53:52 +02:00
2020-03-21 11:01:00 +01:00
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
2019-06-13 04:53:52 +02:00
subPackages = [ "cmd/eksctl" ];
2019-08-06 05:07:45 +02:00
buildFlags = [ "-tags netgo" "-tags release" ];
2019-06-13 04:53:52 +02:00
postInstall =
''
2019-07-09 01:03:22 +02: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 04:53:52 +02:00
'';
2020-03-21 11:01:00 +01:00
meta = with stdenv.lib; {
2019-06-13 04:53:52 +02:00
description = "A CLI for Amazon EKS";
homepage = "https://github.com/weaveworks/eksctl";
license = licenses.asl20;
platforms = platforms.all;
maintainers = with maintainers; [ xrelkd ];
};
}