nixpkgs/pkgs/tools/security/hashdeep/default.nix
Gasper Vozel 171d374c17 Add hashdeep 4.4 package
A set of cross-platform tools to compute hashes.

See: http://md5deep.sourceforge.net/start-hashdeep.html
2020-03-02 09:10:08 +01:00

24 lines
659 B
Nix

{ stdenv, fetchFromGitHub, autoreconfHook }:
let version = "4.4";
in stdenv.mkDerivation {
name = "hashdeep-${version}";
src = fetchFromGitHub {
owner = "jessek";
repo = "hashdeep";
rev = "release-${version}";
sha256 = "0m2b042ndikavmplv3qjdhfj44hl1h8car83c192xi9nv5ahi7mf";
};
nativeBuildInputs = [ autoreconfHook ];
meta = with stdenv.lib; {
description = "A set of cross-platform tools to compute hashes.";
homepage = "https://github.com/jessek/hashdeep";
license = licenses.gpl2;
platforms = with platforms; linux ++ freebsd ++ openbsd ++ darwin;
maintainers = [ stdenv.lib.maintainers.karantan ];
};
}