about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2022-02-18 01:50:31 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2022-02-18 01:50:31 +0000
commitea92b5f852312a9cbae58e83f00906e45e083c99 (patch)
tree8d503be6a80682ccaf4b80020fb31dfce8178e53 /pkgs/tools
parent94f61e4c82834ca5c79384bc35853d6841583664 (diff)
aws-iam-authenticator: 0.5.3 -> 0.5.5
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/security/aws-iam-authenticator/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/security/aws-iam-authenticator/default.nix b/pkgs/tools/security/aws-iam-authenticator/default.nix
index 476d248c4343f..b1f5d8b56c308 100644
--- a/pkgs/tools/security/aws-iam-authenticator/default.nix
+++ b/pkgs/tools/security/aws-iam-authenticator/default.nix
@@ -2,18 +2,18 @@
 
 buildGoModule rec {
   pname = "aws-iam-authenticator";
-  version = "0.5.3";
+  version = "0.5.5";
 
   src = fetchFromGitHub {
     owner = "kubernetes-sigs";
     repo = pname;
     rev = "v${version}";
-    sha256 = "0ga3vf5gn7533iqnxn7kchb6xg5wvk92livlqzkhi5qvqhl1sbw0";
+    sha256 = "sha256-5QtNAcInp1mUE8SHUUMS8/XURbPx/q8xMsvEEo/rnCs=";
   };
 
   # Upstream has inconsistent vendoring, see https://github.com/kubernetes-sigs/aws-iam-authenticator/issues/377
   deleteVendor = true;
-  vendorSha256 = "+Z8sENIMWXP29Piwb/W6i7UdNXVq6ZnO7AZbSaUYCME=";
+  vendorSha256 = null;
 
   ldflags = [ "-s" "-w" "-X main.version=v${version}" ];