about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2023-09-14 16:56:00 -0400
committerGitHub <noreply@github.com>2023-09-14 16:56:00 -0400
commit017f5f0493fb428e76d6eb8b45155ad9b615376a (patch)
treeb113aed7c9072f65563fd147da773c24fc19d8b1 /pkgs
parenta6a728a9eba5167ace009478ca4eae3f5c65f465 (diff)
parent68d76f78b267a94adede279d823f1f46ced968ee (diff)
Merge pull request #255118 from aaronjheng/s5
s5: use sri hash
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/security/s5/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/tools/security/s5/default.nix b/pkgs/tools/security/s5/default.nix
index e7c2c2ebf59c5..7d63c4cb8a670 100644
--- a/pkgs/tools/security/s5/default.nix
+++ b/pkgs/tools/security/s5/default.nix
@@ -8,16 +8,17 @@ buildGoModule rec {
     owner = "mvisonneau";
     repo = pname;
     rev = "v${version}";
-    sha256 = "003l4v7d671rvw7q32fxhxv3qazw6v8v9ch7hmyy9lvwkc7x6dlm";
+    hash = "sha256-lTbTD5t80+R9hQeytNE2/Cs8dofdiYEP3zkc084mdAA=";
   };
 
+  vendorHash = "sha256-TrCIUeY0B+BsWNaUkDTEgrEaWfJKnID2mafj3ink+i8=";
+
   subPackages = [ "cmd/${pname}" ];
 
   ldflags = [
     "-X main.version=v${version}"
   ];
 
-  vendorSha256 = "TrCIUeY0B+BsWNaUkDTEgrEaWfJKnID2mafj3ink+i8=";
   doCheck = true;
 
   meta = with lib; {