aboutsummaryrefslogtreecommitdiff
path: root/pkgs/tools/security/rhash
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2019-02-04 01:43:00 -0600
committerWill Dietz <w@wdtz.org>2019-02-04 01:49:02 -0600
commitbffabe5de1fabf3814c210c7530b76c2b2bfcc5a (patch)
treef9bde9fc3899e174fb39bdda7f3879fc358dabe1 /pkgs/tools/security/rhash
parent2b344e6a74c0825c0a4ce98f42d34039406ca502 (diff)
rhash: 1.3.6 -> 1.3.8
https://github.com/rhash/RHash/releases/tag/v1.3.8 https://github.com/rhash/RHash/releases/tag/v1.3.7
Diffstat (limited to 'pkgs/tools/security/rhash')
-rw-r--r--pkgs/tools/security/rhash/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/tools/security/rhash/default.nix b/pkgs/tools/security/rhash/default.nix
index 27f2ca04d710..b6df8517855f 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 = "1.3.6";
+ version = "1.3.8";
name = "rhash-${version}";
src = fetchFromGitHub {
owner = "rhash";
repo = "RHash";
rev = "v${version}";
- sha256 = "1c8gngjj34ylx1f56hjbvml22bif0bx1b88dx2cyxbix8praxqh7";
+ sha256 = "0i00wl63hn80g0s9gdi772gchbghwgkvn4nbb5227y2wwy30yyi2";
};
nativeBuildInputs = [ which ];
@@ -16,10 +16,9 @@ stdenv.mkDerivation rec {
# configure script is not autotools-based, doesn't support these options
configurePlatforms = [ ];
- doCheck = false; # fails
+ doCheck = true;
- installTargets = [ "install" "install-lib-shared" "install-lib-so-link" ];
- postInstall = "make -C librhash install-headers";
+ installTargets = [ "install" "install-lib-shared" "install-lib-so-link" "install-lib-headers" ];
meta = with stdenv.lib; {
homepage = http://rhash.anz.ru;