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

31 lines
819 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, which }:
stdenv.mkDerivation rec {
version = "1.3.6";
2015-06-17 07:55:16 +00:00
name = "rhash-${version}";
src = fetchFromGitHub {
owner = "rhash";
repo = "RHash";
rev = "v${version}";
sha256 = "1c8gngjj34ylx1f56hjbvml22bif0bx1b88dx2cyxbix8praxqh7";
};
nativeBuildInputs = [ which ];
# configure script is not autotools-based, doesn't support these options
configurePlatforms = [ ];
doCheck = false; # fails
installTargets = [ "install" "install-lib-shared" "install-lib-so-link" ];
postInstall = "make -C librhash install-headers";
2015-06-17 07:55:16 +00:00
meta = with stdenv.lib; {
homepage = http://rhash.anz.ru;
2015-06-17 07:55:16 +00:00
description = "Console utility and library for computing and verifying hash sums of files";
platforms = platforms.all;
2015-06-18 18:52:39 +00:00
maintainers = [ maintainers.andrewrk ];
};
}