aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/tools/security/aws-iam-authenticator/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'infra/libkookie/nixpkgs/pkgs/tools/security/aws-iam-authenticator/default.nix')
-rw-r--r--infra/libkookie/nixpkgs/pkgs/tools/security/aws-iam-authenticator/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/infra/libkookie/nixpkgs/pkgs/tools/security/aws-iam-authenticator/default.nix b/infra/libkookie/nixpkgs/pkgs/tools/security/aws-iam-authenticator/default.nix
new file mode 100644
index 000000000000..44282d5f9643
--- /dev/null
+++ b/infra/libkookie/nixpkgs/pkgs/tools/security/aws-iam-authenticator/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, buildGoPackage, fetchFromGitHub }:
+
+buildGoPackage rec {
+ pname = "aws-iam-authenticator";
+ version = "0.4.0";
+
+ goPackagePath = "github.com/kubernetes-sigs/aws-iam-authenticator";
+
+ src = fetchFromGitHub {
+ owner = "kubernetes-sigs";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "1ghl2vms9wmvczdl2raqhy0gffxmk24h158gjb5mlw7rggzvb7bg";
+ };
+
+ meta = with stdenv.lib; {
+ homepage = "https://github.com/kubernetes-sigs/aws-iam-authenticator";
+ description = "AWS IAM credentials for Kubernetes authentication";
+ license = licenses.asl20;
+ maintainers = [ maintainers.srhb ];
+ };
+}