Merge pull request #109015 from ivankovnatsky/patch-10

aws-iam-authenticator: 0.4.0 -> 0.5.2
This commit is contained in:
Wael Nasreddine 2021-02-08 22:32:02 -08:00 committed by GitHub
commit a073dd54aa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,18 +1,20 @@
{ lib, buildGoPackage, fetchFromGitHub }:
{ lib, buildGoModule, fetchFromGitHub }:
buildGoPackage rec {
buildGoModule rec {
pname = "aws-iam-authenticator";
version = "0.4.0";
goPackagePath = "github.com/kubernetes-sigs/aws-iam-authenticator";
version = "0.5.2";
src = fetchFromGitHub {
owner = "kubernetes-sigs";
repo = pname;
rev = "v${version}";
sha256 = "1ghl2vms9wmvczdl2raqhy0gffxmk24h158gjb5mlw7rggzvb7bg";
sha256 = "1xfc3a0dik4930va30sbl6687v6i5irv96fwis9lrqh5rjqnblqp";
};
vendorSha256 = null;
buildFlagsArray = [ "-ldflags=-s -w -X pkg.Version=v${version}" ];
meta = with lib; {
homepage = "https://github.com/kubernetes-sigs/aws-iam-authenticator";
description = "AWS IAM credentials for Kubernetes authentication";