summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorSarah Brofeldt <sbrofeldt@gmail.com>2021-06-09 21:00:21 +0200
committerGitHub <noreply@github.com>2021-06-09 21:00:21 +0200
commitcc90d13883f1bd126c649ce73d448e96829b7cb6 (patch)
treeedba3f445cb2227a48c9460f6d18fd8dfb558f3f /pkgs
parentcd92f32734cf1a73d66fdcc064561f0398c7fa15 (diff)
parent38e40a73fe3787728c4e2ded6bc2483fb81838df (diff)
downloadnixpkgs-cc90d13883f1bd126c649ce73d448e96829b7cb6.tar
nixpkgs-cc90d13883f1bd126c649ce73d448e96829b7cb6.tar.gz
nixpkgs-cc90d13883f1bd126c649ce73d448e96829b7cb6.tar.bz2
nixpkgs-cc90d13883f1bd126c649ce73d448e96829b7cb6.tar.lz
nixpkgs-cc90d13883f1bd126c649ce73d448e96829b7cb6.tar.xz
nixpkgs-cc90d13883f1bd126c649ce73d448e96829b7cb6.tar.zst
nixpkgs-cc90d13883f1bd126c649ce73d448e96829b7cb6.zip
Merge pull request #126335 from stig/aws-iam-authenticator-0.5.2->0.5.3
aws-iam-authenticator: 0.5.2 -> 0.5.3
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/security/aws-iam-authenticator/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/tools/security/aws-iam-authenticator/default.nix b/pkgs/tools/security/aws-iam-authenticator/default.nix
index f0eda76821d..d9f4f4a0173 100644
--- a/pkgs/tools/security/aws-iam-authenticator/default.nix
+++ b/pkgs/tools/security/aws-iam-authenticator/default.nix
@@ -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}" ];