Merge pull request #55174 from dtzWill/update/rhash-1.3.8

rhash: 1.3.6 -> 1.3.8
This commit is contained in:
Andreas Rammhold 2019-02-06 11:40:02 +01:00 committed by GitHub
commit 2d381653e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,14 +1,14 @@
{ stdenv, fetchFromGitHub, which }: { stdenv, fetchFromGitHub, which }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "1.3.6"; version = "1.3.8";
name = "rhash-${version}"; name = "rhash-${version}";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "rhash"; owner = "rhash";
repo = "RHash"; repo = "RHash";
rev = "v${version}"; rev = "v${version}";
sha256 = "1c8gngjj34ylx1f56hjbvml22bif0bx1b88dx2cyxbix8praxqh7"; sha256 = "0i00wl63hn80g0s9gdi772gchbghwgkvn4nbb5227y2wwy30yyi2";
}; };
nativeBuildInputs = [ which ]; nativeBuildInputs = [ which ];
@ -16,10 +16,11 @@ stdenv.mkDerivation rec {
# configure script is not autotools-based, doesn't support these options # configure script is not autotools-based, doesn't support these options
configurePlatforms = [ ]; configurePlatforms = [ ];
doCheck = false; # fails doCheck = true;
installTargets = [ "install" "install-lib-shared" "install-lib-so-link" ]; checkTarget = "test-full";
postInstall = "make -C librhash install-headers";
installTargets = [ "install" "install-lib-shared" "install-lib-so-link" "install-lib-headers" ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = http://rhash.anz.ru; homepage = http://rhash.anz.ru;