Merge pull request #126467 from stig/backport-126335-to-release-21.05

[21.05] aws-iam-authenticator: 0.5.2 -> 0.5.3
This commit is contained in:
Sarah Brofeldt 2021-06-10 12:57:27 +02:00 committed by GitHub
commit d8b126507f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 3 deletions

View File

@ -2,16 +2,18 @@
buildGoModule rec {
pname = "aws-iam-authenticator";
version = "0.5.2";
version = "0.5.3";
src = fetchFromGitHub {
owner = "kubernetes-sigs";
repo = pname;
rev = "v${version}";
sha256 = "1xfc3a0dik4930va30sbl6687v6i5irv96fwis9lrqh5rjqnblqp";
sha256 = "0ga3vf5gn7533iqnxn7kchb6xg5wvk92livlqzkhi5qvqhl1sbw0";
};
vendorSha256 = null;
# Upstream has inconsistent vendoring, see https://github.com/kubernetes-sigs/aws-iam-authenticator/issues/377
deleteVendor = true;
vendorSha256 = "+Z8sENIMWXP29Piwb/W6i7UdNXVq6ZnO7AZbSaUYCME=";
buildFlagsArray = [ "-ldflags=-s -w -X main.version=v${version}" ];