2018-02-05 15:43:27 +01:00
|
|
|
{ stdenv, fetchFromGitHub, which }:
|
2014-08-21 00:42:50 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-12-21 17:52:50 +01:00
|
|
|
version = "1.3.9";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "rhash";
|
2014-08-21 00:42:50 +02:00
|
|
|
|
2018-02-05 15:43:27 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rhash";
|
|
|
|
repo = "RHash";
|
2018-09-18 23:51:41 +02:00
|
|
|
rev = "v${version}";
|
2019-12-21 17:52:50 +01:00
|
|
|
sha256 = "06i49x1l21h2q7pfnf4crbmjyg8b9ad0qs10ywyyn5sjpi0c21wq";
|
2014-08-21 00:42:50 +02:00
|
|
|
};
|
|
|
|
|
2018-02-05 15:43:27 +01:00
|
|
|
nativeBuildInputs = [ which ];
|
2017-06-13 21:37:24 +02:00
|
|
|
|
2018-02-05 15:43:27 +01:00
|
|
|
# configure script is not autotools-based, doesn't support these options
|
|
|
|
configurePlatforms = [ ];
|
2014-08-21 00:42:50 +02:00
|
|
|
|
2019-02-04 08:43:00 +01:00
|
|
|
doCheck = true;
|
2018-04-25 05:20:18 +02:00
|
|
|
|
2019-02-04 08:47:53 +01:00
|
|
|
checkTarget = "test-full";
|
|
|
|
|
2019-02-04 08:43:00 +01:00
|
|
|
installTargets = [ "install" "install-lib-shared" "install-lib-so-link" "install-lib-headers" ];
|
2015-06-17 09:55:16 +02:00
|
|
|
|
2014-08-21 00:42:50 +02:00
|
|
|
meta = with stdenv.lib; {
|
2019-12-21 17:52:50 +01:00
|
|
|
homepage = "http://rhash.sourceforge.net/";
|
2015-06-17 09:55:16 +02:00
|
|
|
description = "Console utility and library for computing and verifying hash sums of files";
|
2019-12-21 17:52:50 +01:00
|
|
|
license = licenses.bsd0;
|
2017-06-13 17:17:03 +02:00
|
|
|
platforms = platforms.all;
|
2015-06-18 20:52:39 +02:00
|
|
|
maintainers = [ maintainers.andrewrk ];
|
2014-08-21 00:42:50 +02:00
|
|
|
};
|
|
|
|
}
|