about summary refs log tree commit diff
path: root/pkgs/tools/security/fulcio
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2022-08-24 10:46:38 +0000
committerR. Ryantm <ryantm-bot@ryantm.com>2022-08-24 10:46:38 +0000
commit2150676323270d083080ada35ec2037de8954aa8 (patch)
tree0b0829e0dd0e42fe8cf11e667dc483ed6cb64a84 /pkgs/tools/security/fulcio
parent6895427d343b92d2ee9a2e55ce77137869623e28 (diff)
fulcio: 0.5.2 -> 0.5.3
Diffstat (limited to 'pkgs/tools/security/fulcio')
-rw-r--r--pkgs/tools/security/fulcio/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/security/fulcio/default.nix b/pkgs/tools/security/fulcio/default.nix
index e1e0353847bd9..4d04d791e20db 100644
--- a/pkgs/tools/security/fulcio/default.nix
+++ b/pkgs/tools/security/fulcio/default.nix
@@ -2,13 +2,13 @@
 
 buildGoModule rec {
   pname = "fulcio";
-  version = "0.5.2";
+  version = "0.5.3";
 
   src = fetchFromGitHub {
     owner = "sigstore";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-jNsW4eUpqa1a1itEnY1932ta3UpjLxhbHz9byM6/Rxo=";
+    sha256 = "sha256-X943wqbgFX4Y15kCf+bxQP7OOTWksmmYghlAWPC2zVs=";
     # populate values that require us to use git. By doing this in postFetch we
     # can delete .git afterwards and maintain better reproducibility of the src.
     leaveDotGit = true;
@@ -20,7 +20,7 @@ buildGoModule rec {
       find "$out" -name .git -print0 | xargs -0 rm -rf
     '';
   };
-  vendorSha256 = "sha256-L+20HvkRAs00tbD5q1ATeLrKoa7VFQlrXChh7AtK0PI=";
+  vendorSha256 = "sha256-1BsnNDZAIdLj13e/qL//bPrhYKrTIBvtC1C65WmGHY0=";
 
   nativeBuildInputs = [ installShellFiles ];