about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorxeji <36407913+xeji@users.noreply.github.com>2018-09-19 01:40:45 +0200
committerGitHub <noreply@github.com>2018-09-19 01:40:45 +0200
commit3a13d6b027e153c1bee23bde16df6b6f1fa2f47f (patch)
tree2dcf60d5ef7ceff7d2d85b09691a42ebcbb48caf /pkgs/tools
parent7319013ea14f94cb360c7bef9e403de7f1db83b0 (diff)
parent134929d9acb8f004c8166266ccaa04dece0e75b7 (diff)
downloadnixlib-3a13d6b027e153c1bee23bde16df6b6f1fa2f47f.tar
nixlib-3a13d6b027e153c1bee23bde16df6b6f1fa2f47f.tar.gz
nixlib-3a13d6b027e153c1bee23bde16df6b6f1fa2f47f.tar.bz2
nixlib-3a13d6b027e153c1bee23bde16df6b6f1fa2f47f.tar.lz
nixlib-3a13d6b027e153c1bee23bde16df6b6f1fa2f47f.tar.xz
nixlib-3a13d6b027e153c1bee23bde16df6b6f1fa2f47f.tar.zst
nixlib-3a13d6b027e153c1bee23bde16df6b6f1fa2f47f.zip
Merge pull request #46869 from dtzWill/update/rhash-1.3.6
rhash: 2018-02-05 -> 1.3.6
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/security/rhash/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/security/rhash/default.nix b/pkgs/tools/security/rhash/default.nix
index 22d7e93fe476..27f2ca04d710 100644
--- a/pkgs/tools/security/rhash/default.nix
+++ b/pkgs/tools/security/rhash/default.nix
@@ -1,14 +1,14 @@
 { stdenv, fetchFromGitHub, which }:
 
 stdenv.mkDerivation rec {
-  version = "2018-02-05";
+  version = "1.3.6";
   name = "rhash-${version}";
 
   src = fetchFromGitHub {
     owner = "rhash";
     repo = "RHash";
-    rev = "cc26d54ff5df0f692907a5e3132a5eeca559ed61";
-    sha256 = "1ldagp931lmxxpyvsb9rrar4iqwmv94m6lfjzkbkshpmk3p5ng7h";
+    rev = "v${version}";
+    sha256 = "1c8gngjj34ylx1f56hjbvml22bif0bx1b88dx2cyxbix8praxqh7";
   };
 
   nativeBuildInputs = [ which ];