about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorAaron Jheng <wentworth@outlook.com>2023-09-14 22:05:22 +0800
committerAaron Jheng <wentworth@outlook.com>2023-09-14 22:05:22 +0800
commit68d76f78b267a94adede279d823f1f46ced968ee (patch)
treec9dfb2af459da4fb7c8365e11e6a1cbd1159a5d2 /pkgs
parentbf36a10c32cb4da22d551c5e49b4d28794c39bca (diff)
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; {