Merge pull request #81492 from karantan/add/hashdeep-package
Add hashdeep 4.4 package
This commit is contained in:
commit
9fbd5a3931
3 changed files with 32 additions and 0 deletions
|
@ -3768,6 +3768,12 @@
|
|||
github = "kampfschlaefer";
|
||||
name = "Arnold Krille";
|
||||
};
|
||||
karantan = {
|
||||
name = "Gasper Vozel";
|
||||
email = "karantan@gmail.com";
|
||||
github = "karantan";
|
||||
githubId = 7062631;
|
||||
};
|
||||
karolchmist = {
|
||||
email = "info+nix@chmist.com";
|
||||
name = "karolchmist";
|
||||
|
|
23
pkgs/tools/security/hashdeep/default.nix
Normal file
23
pkgs/tools/security/hashdeep/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ 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;
|
||||
maintainers = [ stdenv.lib.maintainers.karantan ];
|
||||
};
|
||||
}
|
|
@ -26226,7 +26226,10 @@ in
|
|||
|
||||
go-license-detector = callPackage ../development/tools/misc/go-license-detector { };
|
||||
|
||||
hashdeep = callPackage ../tools/security/hashdeep { };
|
||||
|
||||
fluxboxlauncher = callPackage ../applications/misc/fluxboxlauncher {};
|
||||
|
||||
btcdeb = callPackage ../applications/blockchains/btcdeb {};
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue