summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorR. Ryantm <ryantm-bot@ryantm.com>2022-10-01 20:48:30 +0000
committerBobby Rong <rjl931189261@126.com>2022-10-02 22:19:08 +0800
commit4c2dca627e140292bbbc3dcf15b1d95d769e67a2 (patch)
tree65aa9c833ced156b4b68d17e55500a1581d0c01b /pkgs/tools/security
parent685bb0eede199226ff4a90ff3346cb0c575b2dfd (diff)
downloadnixpkgs-4c2dca627e140292bbbc3dcf15b1d95d769e67a2.tar
nixpkgs-4c2dca627e140292bbbc3dcf15b1d95d769e67a2.tar.gz
nixpkgs-4c2dca627e140292bbbc3dcf15b1d95d769e67a2.tar.bz2
nixpkgs-4c2dca627e140292bbbc3dcf15b1d95d769e67a2.tar.lz
nixpkgs-4c2dca627e140292bbbc3dcf15b1d95d769e67a2.tar.xz
nixpkgs-4c2dca627e140292bbbc3dcf15b1d95d769e67a2.tar.zst
nixpkgs-4c2dca627e140292bbbc3dcf15b1d95d769e67a2.zip
fulcio: 0.5.3 -> 0.6.0
Diffstat (limited to 'pkgs/tools/security')
-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 4d04d791e20..d099cd2c0db 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.3";
+  version = "0.6.0";
 
   src = fetchFromGitHub {
     owner = "sigstore";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-X943wqbgFX4Y15kCf+bxQP7OOTWksmmYghlAWPC2zVs=";
+    sha256 = "sha256-ZWDvFSx+zH/P0ZfdqxAe+c4jFUH8mfY1vpUXlIxw1sI=";
     # 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-1BsnNDZAIdLj13e/qL//bPrhYKrTIBvtC1C65WmGHY0=";
+  vendorSha256 = "sha256-LLvaaOZzp9b99eYOsfvbPRwZqSNfoinVUfYDmPiw5Mk=";
 
   nativeBuildInputs = [ installShellFiles ];