1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-11 15:15:36 +00:00
nixpkgs/pkgs/tools/admin/eksctl/default.nix

35 lines
928 B
Nix
Raw Normal View History

{ 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";
2020-07-03 06:34:20 +01:00
version = "0.22.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;
2020-07-03 06:34:20 +01:00
sha256 = "1l7wcx89d7nil5lbr4x2w04lwranz0z83y892v290wv2l0xnmshj";
2019-06-13 03:53:52 +01:00
};
2020-07-03 06:34:20 +01:00
vendorSha256 = "0fy9m72iciz5pjf2b3323brgi15w6a9fg1m1srpaiay3md87gagg";
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
2020-04-28 03:38:57 +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; {
2019-06-13 03:53:52 +01:00
description = "A CLI for Amazon EKS";
homepage = "https://github.com/weaveworks/eksctl";
license = licenses.asl20;
platforms = platforms.all;
maintainers = with maintainers; [ xrelkd ];
};
}