mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 14:19:58 +03:00
aws-iam-authenticator: init at 2018-07-29 (#44863)
This commit is contained in:
parent
989292e3e1
commit
9f234788e4
27
pkgs/tools/security/aws-iam-authenticator/default.nix
Normal file
27
pkgs/tools/security/aws-iam-authenticator/default.nix
Normal file
@ -0,0 +1,27 @@
|
||||
# This file was generated by https://github.com/kamilchm/go2nix v1.2.1
|
||||
{ stdenv, buildGoPackage, fetchgit }:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "aws-iam-authenticator-${version}";
|
||||
# This is meant to be a stable release, but since the rename from
|
||||
# heptio, there has been no release. Please pin this to an actual
|
||||
# release once that happens.
|
||||
version = "2018-07-29";
|
||||
rev = "01dd27d77ec1e2ec640a010970f00b2f8074b0b5";
|
||||
|
||||
goPackagePath = "github.com/kubernetes-sigs/aws-iam-authenticator";
|
||||
|
||||
src = fetchgit {
|
||||
inherit rev;
|
||||
url = "https://github.com/kubernetes-sigs/aws-iam-authenticator";
|
||||
sha256 = "1n7khd2qvl527x3ac6f89smf12za92g08d9v2j393i7n9l1rgw38";
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/kubernetes-sigs/aws-iam-authenticator";
|
||||
description = "AWS IAM credentials for Kubernetes authentication";
|
||||
license = stdenv.lib.licenses.asl20;
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
maintainers = [ stdenv.lib.maintainers.srhb ];
|
||||
};
|
||||
}
|
@ -569,6 +569,8 @@ with pkgs;
|
||||
|
||||
avfs = callPackage ../tools/filesystems/avfs { };
|
||||
|
||||
aws-iam-authenticator = callPackage ../tools/security/aws-iam-authenticator {};
|
||||
|
||||
awscli = callPackage ../tools/admin/awscli { };
|
||||
|
||||
awsebcli = callPackage ../tools/virtualization/awsebcli {};
|
||||
|
Loading…
Reference in New Issue
Block a user