2021-08-31 10:02:36 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchFromGitHub
|
2021-11-19 01:44:45 +00:00
|
|
|
, fetchpatch
|
2021-08-31 10:02:36 +00:00
|
|
|
, which
|
2021-06-11 19:20:57 +00:00
|
|
|
, enableStatic ? stdenv.hostPlatform.isStatic
|
|
|
|
}:
|
2014-08-20 22:42:50 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-08-31 10:02:36 +00:00
|
|
|
version = "1.4.2";
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "rhash";
|
2014-08-20 22:42:50 +00:00
|
|
|
|
2018-02-05 14:43:27 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rhash";
|
|
|
|
repo = "RHash";
|
2018-09-18 21:51:41 +00:00
|
|
|
rev = "v${version}";
|
2021-08-31 10:02:36 +00:00
|
|
|
sha256 = "sha256-HkDgWwHoRWCNtWyfP4sj3veEd+KT5J7yL4J4Z/hJcrE=";
|
2014-08-20 22:42:50 +00:00
|
|
|
};
|
|
|
|
|
2021-11-20 02:45:11 +00:00
|
|
|
patches = [
|
2021-11-19 01:44:45 +00:00
|
|
|
# Fix clang configuration; remove with next release
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/rhash/RHash/commit/4dc506066cf1727b021e6352535a8bb315c3f8dc.patch";
|
|
|
|
sha256 = "0i5jz2s37h278c8d36pzphhp8rjy660zmhpg2cqlp960f6ny8wwj";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2018-02-05 14:43:27 +00:00
|
|
|
nativeBuildInputs = [ which ];
|
2017-06-13 19:37:24 +00:00
|
|
|
|
2018-02-05 14:43:27 +00:00
|
|
|
# configure script is not autotools-based, doesn't support these options
|
2021-06-11 19:20:57 +00:00
|
|
|
dontAddStaticConfigureFlags = true;
|
2021-08-31 10:02:36 +00:00
|
|
|
|
2018-02-05 14:43:27 +00:00
|
|
|
configurePlatforms = [ ];
|
2021-08-31 10:02:36 +00:00
|
|
|
|
2021-06-11 19:20:57 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--ar=${stdenv.cc.targetPrefix}ar"
|
|
|
|
(lib.enableFeature enableStatic "static")
|
|
|
|
(lib.enableFeature enableStatic "lib-static")
|
|
|
|
];
|
2014-08-20 22:42:50 +00:00
|
|
|
|
2019-02-04 07:43:00 +00:00
|
|
|
doCheck = true;
|
2018-04-25 03:20:18 +00:00
|
|
|
|
2019-02-04 07:47:53 +00:00
|
|
|
checkTarget = "test-full";
|
|
|
|
|
2021-08-31 10:02:36 +00:00
|
|
|
installTargets = [
|
|
|
|
"install"
|
|
|
|
"install-lib-headers"
|
|
|
|
] ++ lib.optional (!enableStatic) [
|
|
|
|
"install-lib-so-link"
|
|
|
|
];
|
2015-06-17 07:55:16 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-12-21 16:52:50 +00:00
|
|
|
homepage = "http://rhash.sourceforge.net/";
|
2015-06-17 07:55:16 +00:00
|
|
|
description = "Console utility and library for computing and verifying hash sums of files";
|
2019-12-21 16:52:50 +00:00
|
|
|
license = licenses.bsd0;
|
2017-06-13 15:17:03 +00:00
|
|
|
platforms = platforms.all;
|
2021-08-31 10:02:36 +00:00
|
|
|
maintainers = with maintainers; [ andrewrk ];
|
2014-08-20 22:42:50 +00:00
|
|
|
};
|
|
|
|
}
|