nixpkgs/pkgs/tools/security/rhash/default.nix
Will Dietz 088274bf2c rhash: 1.3.5 -> 2018-02-05
Latest git is much more build-friendly.
2018-02-05 08:55:05 -06:00

29 lines
825 B
Nix

{ stdenv, fetchFromGitHub, which }:
stdenv.mkDerivation rec {
version = "2018-02-05";
name = "rhash-${version}";
src = fetchFromGitHub {
owner = "rhash";
repo = "RHash";
rev = "cc26d54ff5df0f692907a5e3132a5eeca559ed61";
sha256 = "1ldagp931lmxxpyvsb9rrar4iqwmv94m6lfjzkbkshpmk3p5ng7h";
};
nativeBuildInputs = [ which ];
# configure script is not autotools-based, doesn't support these options
configurePlatforms = [ ];
installTargets = [ "install" "install-lib-shared" "install-lib-so-link" ];
postInstall = "make -C librhash install-headers";
meta = with stdenv.lib; {
homepage = http://rhash.anz.ru;
description = "Console utility and library for computing and verifying hash sums of files";
platforms = platforms.all;
maintainers = [ maintainers.andrewrk ];
};
}