nixpkgs/pkgs/tools/security/rhash/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

56 lines
1.3 KiB
Nix
Raw Normal View History

2021-08-31 10:02:36 +00:00
{ lib
, stdenv
, fetchFromGitHub
, which
2021-06-11 19:20:57 +00:00
, enableStatic ? stdenv.hostPlatform.isStatic
, gettext
2021-06-11 19:20:57 +00:00
}:
stdenv.mkDerivation rec {
2023-07-17 18:04:11 +00:00
version = "1.4.4";
pname = "rhash";
src = fetchFromGitHub {
owner = "rhash";
repo = "RHash";
rev = "v${version}";
2023-07-17 18:04:11 +00:00
sha256 = "sha256-3CW41ULdXoID4cOgrcG2j85tgIJ/sz5hU7A83qpuxf4=";
};
patches = [ ./dont-fail-ln.patch ./do-link-so.patch ];
nativeBuildInputs = [ which ];
buildInputs = lib.optionals stdenv.hostPlatform.isFreeBSD [ gettext ];
# 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
configurePlatforms = [ ];
2021-08-31 10:02:36 +00:00
2021-06-11 19:20:57 +00:00
configureFlags = [
"--ar=${stdenv.cc.targetPrefix}ar"
"--target=${stdenv.hostPlatform.config}"
2021-06-11 19:20:57 +00:00
(lib.enableFeature enableStatic "static")
(lib.enableFeature enableStatic "lib-static")
];
doCheck = true;
checkTarget = "test-full";
2021-08-31 10:02:36 +00:00
installTargets = [
"install"
"install-lib-headers"
] ++ lib.optionals (!enableStatic) [
2021-08-31 10:02:36 +00:00
"install-lib-so-link"
];
2015-06-17 07:55:16 +00:00
meta = with lib; {
homepage = "https://rhash.sourceforge.net/";
2015-06-17 07:55:16 +00:00
description = "Console utility and library for computing and verifying hash sums of files";
license = licenses.bsd0;
platforms = platforms.all;
2021-08-31 10:02:36 +00:00
maintainers = with maintainers; [ andrewrk ];
};
}