42 lines
1 KiB
Nix
42 lines
1 KiB
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "aws-iam-authenticator";
|
|
version = "0.6.28";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kubernetes-sigs";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-+cMgB1FHNFtvDz6x3fPuzMkKLytlipX6CE5Xs2e9UCc=";
|
|
};
|
|
|
|
vendorHash = "sha256-gFz1QrzLGMPyjB8yo+/FscZEpb2msshoUfBGmNRbvJM=";
|
|
|
|
ldflags =
|
|
let
|
|
PKG = "sigs.k8s.io/aws-iam-authenticator";
|
|
in
|
|
[
|
|
"-s"
|
|
"-w"
|
|
"-X=${PKG}/pkg.Version=${version}"
|
|
"-X=${PKG}/pkg.BuildDate=1970-01-01T01:01:01Z"
|
|
"-X ?${PKG}/pkg.CommitID=${version}"
|
|
];
|
|
|
|
subPackages = [ "cmd/aws-iam-authenticator" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/kubernetes-sigs/aws-iam-authenticator";
|
|
description = "AWS IAM credentials for Kubernetes authentication";
|
|
mainProgram = "aws-iam-authenticator";
|
|
changelog = "https://github.com/kubernetes-sigs/aws-iam-authenticator/releases/tag/v${version}";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ srhb ];
|
|
};
|
|
}
|