aws-iam-authenticator 2018-07-29 -> 0.4.0

This commit is contained in:
Adam Oliver Zsigmond
2019-05-05 12:14:54 -05:00
committed by Mario Rodas
parent 3c53211b75
commit 79d08d64c6
@@ -1,27 +1,22 @@
# This file was generated by https://github.com/kamilchm/go2nix v1.2.1 { stdenv, buildGoPackage, fetchFromGitHub }:
{ stdenv, buildGoPackage, fetchgit }:
buildGoPackage rec { buildGoPackage rec {
name = "aws-iam-authenticator-${version}"; pname = "aws-iam-authenticator";
# This is meant to be a stable release, but since the rename from version = "0.4.0";
# 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"; goPackagePath = "github.com/kubernetes-sigs/aws-iam-authenticator";
src = fetchgit { src = fetchFromGitHub {
inherit rev; owner = "kubernetes-sigs";
url = "https://github.com/kubernetes-sigs/aws-iam-authenticator"; repo = pname;
sha256 = "1n7khd2qvl527x3ac6f89smf12za92g08d9v2j393i7n9l1rgw38"; rev = "v${version}";
sha256 = "1ghl2vms9wmvczdl2raqhy0gffxmk24h158gjb5mlw7rggzvb7bg";
}; };
meta = { meta = with stdenv.lib; {
homepage = "https://github.com/kubernetes-sigs/aws-iam-authenticator"; homepage = "https://github.com/kubernetes-sigs/aws-iam-authenticator";
description = "AWS IAM credentials for Kubernetes authentication"; description = "AWS IAM credentials for Kubernetes authentication";
license = stdenv.lib.licenses.asl20; license = licenses.asl20;
platforms = stdenv.lib.platforms.all; maintainers = [ maintainers.srhb ];
maintainers = [ stdenv.lib.maintainers.srhb ];
}; };
} }