blob: 1a5b96a7d488a5d949534d43645f2dfa1e5185d0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
{ lib
, buildGoModule
, fetchFromGitHub
, installShellFiles
}:
buildGoModule rec {
pname = "eksctl";
version = "0.187.0";
src = fetchFromGitHub {
owner = "weaveworks";
repo = pname;
rev = version;
hash = "sha256-EZYKRkxU2KcjiANUA2tXOk7Kp60O0iOGXRIjmSa61SY=";
};
vendorHash = "sha256-aOLZQKhBy5uBmOhJPfk3ZDHp/YbZw9oN4DaAu1NFcvA=";
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";
};
}
|