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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
1.1 KiB
Nix
Raw Normal View History

{ lib
, buildGoModule
, fetchFromGitHub
, installShellFiles
}:
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";
2024-06-20 09:42:53 +01:00
version = "0.183.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;
2024-06-20 09:42:53 +01:00
hash = "sha256-u2k5Icrqy71HNif/hOElsJoRsLk7CL3uE197ehWenhE=";
2019-06-13 03:53:52 +01:00
};
2024-06-05 12:50:35 +01:00
vendorHash = "sha256-eaEAC1jDmApcyn0RC5pvonYVWblRCB2PFTr/K5rZvtU=";
2019-06-13 03:53:52 +01:00
doCheck = false;
2019-06-13 03:53:52 +01:00
subPackages = [ "cmd/eksctl" ];
tags = [ "netgo" "release" ];
2019-06-13 03:53:52 +01:00
ldflags = [
2021-08-21 21:16:27 +01: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 01:13:34 +01:00
];
2020-07-03 10:21:00 +01:00
2020-07-03 10:20:00 +01:00
nativeBuildInputs = [ installShellFiles ];
2019-07-09 00:03:22 +01:00
2020-07-03 10:20:00 +01:00
postInstall = ''
2022-04-09 01:56:30 +01: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 03:53:52 +01:00
'';
meta = with lib; {
description = "CLI for Amazon EKS";
2019-06-13 03:53:52 +01:00
homepage = "https://github.com/weaveworks/eksctl";
license = licenses.asl20;
2020-09-16 21:34:36 +01:00
maintainers = with maintainers; [ xrelkd Chili-Man ];
mainProgram = "eksctl";
2019-06-13 03:53:52 +01:00
};
}