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

33 lines
841 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, which }:
stdenv.mkDerivation rec {
2020-07-16 12:10:17 +01:00
version = "1.4.0";
pname = "rhash";
src = fetchFromGitHub {
owner = "rhash";
repo = "RHash";
rev = "v${version}";
2020-07-16 12:10:17 +01:00
sha256 = "18zgr1bjzz8v6rckz2q2hx9f2ssbv8qfwclzpbyjaz0c1c9lqqar";
};
nativeBuildInputs = [ which ];
# configure script is not autotools-based, doesn't support these options
configurePlatforms = [ ];
doCheck = true;
checkTarget = "test-full";
installTargets = [ "install" "install-lib-shared" "install-lib-so-link" "install-lib-headers" ];
2015-06-17 08:55:16 +01:00
meta = with stdenv.lib; {
homepage = "http://rhash.sourceforge.net/";
2015-06-17 08:55:16 +01:00
description = "Console utility and library for computing and verifying hash sums of files";
license = licenses.bsd0;
platforms = platforms.all;
2015-06-18 19:52:39 +01:00
maintainers = [ maintainers.andrewrk ];
};
}