summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2022-05-04 18:48:50 -0500
committerGitHub <noreply@github.com>2022-05-04 18:48:50 -0500
commit3dbd8c160270dccf100acca5ce50840ec23c1431 (patch)
treeddd8cbe1059445f08ccb719e9fbf70d377109fa7 /pkgs
parente8fab4e653b5ef024cb7843a27580e7c6f1f95de (diff)
parent6a4134d8ce7f55ab7c56c96e19d43d1a567f4f06 (diff)
Merge pull request #171409 from LeSuisse/fulcio-0.4.1
fulcio: 0.4.0 -> 0.4.1
Diffstat (limited to 'pkgs')
-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 86ba5a9b3bf45..acfce66834ff8 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.4.0";
+  version = "0.4.1";
 
   src = fetchFromGitHub {
     owner = "sigstore";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-WxSN1pZ8E5vKMoqR5EkGgKnLuHYb5Wl2vzqPcPEkXWE=";
+    sha256 = "sha256-b+2M28cI+4UkzrIqI+BioxJsGqT0pqJVPTPmXe+NsZo=";
     # 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-v3H+uUERDHZB2ArruCOClCQFEEW8ANeReObww+1VKOI=";
+  vendorSha256 = "sha256-INPMsSyjFs4GyapOlc/k5fcI2ePUKgp4BtASOKwQhck=";
 
   nativeBuildInputs = [ installShellFiles ];