summary refs log tree commit diff
path: root/pkgs/tools/security/rhash
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2018-09-18 16:51:41 -0500
committerWill Dietz <w@wdtz.org>2018-09-18 16:56:47 -0500
commit134929d9acb8f004c8166266ccaa04dece0e75b7 (patch)
tree2dcf60d5ef7ceff7d2d85b09691a42ebcbb48caf /pkgs/tools/security/rhash
parent7319013ea14f94cb360c7bef9e403de7f1db83b0 (diff)
downloadnixpkgs-134929d9acb8f004c8166266ccaa04dece0e75b7.tar
nixpkgs-134929d9acb8f004c8166266ccaa04dece0e75b7.tar.gz
nixpkgs-134929d9acb8f004c8166266ccaa04dece0e75b7.tar.bz2
nixpkgs-134929d9acb8f004c8166266ccaa04dece0e75b7.tar.lz
nixpkgs-134929d9acb8f004c8166266ccaa04dece0e75b7.tar.xz
nixpkgs-134929d9acb8f004c8166266ccaa04dece0e75b7.tar.zst
nixpkgs-134929d9acb8f004c8166266ccaa04dece0e75b7.zip
rhash: 2018-02-05 -> 1.3.6
Move to official release now that one exists
beyond the pinned git revision.
Diffstat (limited to 'pkgs/tools/security/rhash')
-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 22d7e93fe47..27f2ca04d71 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 ];