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

50 lines
1.1 KiB
Nix
Raw Normal View History

{ lib
, buildGoModule
, fetchFromGitHub
, installShellFiles
}:
2019-06-13 05:53:52 +03:00
2019-07-09 02:03:22 +03:00
buildGoModule rec {
2019-06-13 05:53:52 +03:00
pname = "eksctl";
2024-01-26 19:04:41 +03:00
version = "0.169.0";
2019-06-13 05:53:52 +03:00
src = fetchFromGitHub {
owner = "weaveworks";
2019-07-12 05:48:08 +03:00
repo = pname;
2019-06-13 05:53:52 +03:00
rev = version;
2024-01-26 19:04:41 +03:00
hash = "sha256-WVYEjmuSTIe6LVeXJD7fu1TCrZfH4Cs1T/jfqKNJhM4=";
2019-06-13 05:53:52 +03:00
};
2023-12-26 05:46:33 +03:00
vendorHash = "sha256-cuLzn0OZ5VC+RWGsJ8DCdJN8wm0DrsjH55K/cnyuqB8=";
2019-06-13 05:53:52 +03:00
doCheck = false;
2019-06-13 05:53:52 +03:00
subPackages = [ "cmd/eksctl" ];
tags = [ "netgo" "release" ];
2019-06-13 05:53:52 +03:00
ldflags = [
2021-08-21 23:16:27 +03: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 03:13:34 +03:00
];
2020-07-03 12:21:00 +03:00
2020-07-03 12:20:00 +03:00
nativeBuildInputs = [ installShellFiles ];
2019-07-09 02:03:22 +03:00
2020-07-03 12:20:00 +03:00
postInstall = ''
2022-04-09 03:56:30 +03:00
installShellCompletion --cmd eksctl \
--bash <($out/bin/eksctl completion bash) \
--fish <($out/bin/eksctl completion fish) \
--zsh <($out/bin/eksctl completion zsh)
2019-06-13 05:53:52 +03:00
'';
meta = with lib; {
2019-06-13 05:53:52 +03:00
description = "A CLI for Amazon EKS";
homepage = "https://github.com/weaveworks/eksctl";
license = licenses.asl20;
2020-09-16 23:34:36 +03:00
maintainers = with maintainers; [ xrelkd Chili-Man ];
mainProgram = "eksctl";
2019-06-13 05:53:52 +03:00
};
}