Skip to content

Commit

Permalink
Merge pull request #55174 from dtzWill/update/rhash-1.3.8
Browse files Browse the repository at this point in the history
rhash: 1.3.6 -> 1.3.8
  • Loading branch information
andir committed Feb 6, 2019
2 parents e3c3617 + 994c3ea commit 2d38165
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions pkgs/tools/security/rhash/default.nix
Original file line number Diff line number Diff line change
@@ -1,25 +1,26 @@
{ 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 ];

# 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";
checkTarget = "test-full";

installTargets = [ "install" "install-lib-shared" "install-lib-so-link" "install-lib-headers" ];

meta = with stdenv.lib; {
homepage = http://rhash.anz.ru;
Expand Down

0 comments on commit 2d38165

Please sign in to comment.