depot/third_party/nixpkgs/pkgs/by-name/ek/eksctl/package.nix

57 lines
1.2 KiB
Nix

{
lib,
buildGoModule,
fetchFromGitHub,
installShellFiles,
}:
buildGoModule rec {
pname = "eksctl";
version = "0.197.0";
src = fetchFromGitHub {
owner = "weaveworks";
repo = pname;
rev = version;
hash = "sha256-JHhZFcjnURgt+HqRwy/0rZ2qrzpeX/WGeXJ0arhRDq8=";
};
vendorHash = "sha256-f7+IlOcGJL5G52wPZz1oeHmR8LR8XZh6ASV1qi7hXi0=";
doCheck = false;
subPackages = [ "cmd/eksctl" ];
tags = [
"netgo"
"release"
];
ldflags = [
"-s"
"-w"
"-X github.com/weaveworks/eksctl/pkg/version.gitCommit=${src.rev}"
"-X github.com/weaveworks/eksctl/pkg/version.buildDate=19700101-00:00:00"
];
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
installShellCompletion --cmd eksctl \
--bash <($out/bin/eksctl completion bash) \
--fish <($out/bin/eksctl completion fish) \
--zsh <($out/bin/eksctl completion zsh)
'';
meta = with lib; {
description = "CLI for Amazon EKS";
homepage = "https://github.com/weaveworks/eksctl";
changelog = "https://github.com/eksctl-io/eksctl/releases/tag/v${version}";
license = licenses.asl20;
maintainers = with maintainers; [
xrelkd
Chili-Man
];
mainProgram = "eksctl";
};
}