2023-11-16 04:20:00 +00:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-02-13 14:23:35 +00:00
|
|
|
buildGoModule rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "aws-iam-authenticator";
|
2024-02-07 01:22:34 +00:00
|
|
|
version = "0.6.17";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "kubernetes-sigs";
|
|
|
|
repo = pname;
|
2023-11-16 04:20:00 +00:00
|
|
|
rev = "refs/tags/v${version}";
|
2024-02-07 01:22:34 +00:00
|
|
|
hash = "sha256-CsurRQDPWJ/P/Q4aZhtUW8Z60+hgzw46+98N/QbFcTU=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2024-01-02 11:29:13 +00:00
|
|
|
vendorHash = "sha256-TDsY05jnutNIKx0z6/8vGvsgYCIKBkTxh9mXqk4IR38=";
|
2021-02-13 14:23:35 +00:00
|
|
|
|
2022-06-16 17:23:12 +00:00
|
|
|
ldflags = let PKG = "sigs.k8s.io/aws-iam-authenticator"; in [
|
2023-11-16 04:20:00 +00:00
|
|
|
"-s"
|
|
|
|
"-w"
|
|
|
|
"-X=${PKG}/pkg.Version=${version}"
|
|
|
|
"-X=${PKG}/pkg.BuildDate=1970-01-01T01:01:01Z"
|
|
|
|
"-X ?${PKG}/pkg.CommitID=${version}"
|
2022-06-16 17:23:12 +00:00
|
|
|
];
|
2021-02-13 14:23:35 +00:00
|
|
|
|
|
|
|
subPackages = [ "cmd/aws-iam-authenticator" ];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://github.com/kubernetes-sigs/aws-iam-authenticator";
|
|
|
|
description = "AWS IAM credentials for Kubernetes authentication";
|
2023-11-16 04:20:00 +00:00
|
|
|
changelog = "https://github.com/kubernetes-sigs/aws-iam-authenticator/releases/tag/v${version}";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.asl20;
|
2023-11-16 04:20:00 +00:00
|
|
|
maintainers = with maintainers; [ srhb ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|