about summary refs log tree commit diff
path: root/pkgs/tools/security/fulcio
diff options
context:
space:
mode:
author06kellyjac <dev@j-k.io>2022-04-06 16:49:28 +0100
committer06kellyjac <dev@j-k.io>2022-04-06 16:49:28 +0100
commit51bf2a201105af3ab8eb9705e9c83bdda45cad47 (patch)
tree4a9253146951acc800d17146834e2b17ba36e25a /pkgs/tools/security/fulcio
parent0e296508984008888697fbdc3a173ed3c1b44678 (diff)
fulcio: 0.2.0 -> 0.3.0
Diffstat (limited to 'pkgs/tools/security/fulcio')
-rw-r--r--pkgs/tools/security/fulcio/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/tools/security/fulcio/default.nix b/pkgs/tools/security/fulcio/default.nix
index 300b996524df8..a9e48bdca0972 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.2.0";
+  version = "0.3.0";
 
   src = fetchFromGitHub {
     owner = "sigstore";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-tCjFx9Ug8rO8cSxQb2vBG/MHSUJCx17lDeGnSGjZLcI=";
+    sha256 = "sha256-jcmjfNGruDhQPhVn5R2hdUr+d42qQnIVj8+CCX5HMMM=";
     # 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,11 +20,13 @@ buildGoModule rec {
       find "$out" -name .git -print0 | xargs -0 rm -rf
     '';
   };
-  vendorSha256 = "sha256-CmtsReP0JacgNyRqCrYZRONwR5eluymrQgsj/ukhYNQ=";
+  vendorSha256 = "sha256-WQ0MuNEJWCxKTjkyqA66bGPoMrS/7W/YTiGU3yd+Ge8=";
 
   # install completions post-install
   nativeBuildInputs = [ installShellFiles ];
 
+  excludedPackages = [ "federation" "test/prometheus" ];
+
   ldflags = [
     "-s"
     "-w"