Adding The Sleuth Kit
svn path=/nixpkgs/trunk/; revision=28130
This commit is contained in:
parent
87554657c1
commit
451f7818a5
48
pkgs/tools/system/sleuthkit/default.nix
Normal file
48
pkgs/tools/system/sleuthkit/default.nix
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
x@{builderDefsPackage
|
||||||
|
, libewf, afflib, openssl, zlib
|
||||||
|
, ...}:
|
||||||
|
builderDefsPackage
|
||||||
|
(a :
|
||||||
|
let
|
||||||
|
helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
|
||||||
|
[];
|
||||||
|
|
||||||
|
buildInputs = map (n: builtins.getAttr n x)
|
||||||
|
(builtins.attrNames (builtins.removeAttrs x helperArgNames));
|
||||||
|
sourceInfo = rec {
|
||||||
|
baseName="sleuthkit";
|
||||||
|
version="3.2.2";
|
||||||
|
name="${baseName}-${version}";
|
||||||
|
url="mirror://sourceforge/project/${baseName}/${baseName}/${version}/${name}.tar.gz";
|
||||||
|
hash="02hik5xvbgh1dpisvc3wlhhq1aprnlsk0spbw6h5khpbq9wqnmgj";
|
||||||
|
};
|
||||||
|
in
|
||||||
|
rec {
|
||||||
|
src = a.fetchurl {
|
||||||
|
url = sourceInfo.url;
|
||||||
|
sha256 = sourceInfo.hash;
|
||||||
|
};
|
||||||
|
|
||||||
|
inherit (sourceInfo) name version;
|
||||||
|
inherit buildInputs;
|
||||||
|
|
||||||
|
/* doConfigure should be removed if not needed */
|
||||||
|
phaseNames = ["doConfigure" "doMakeInstall"];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "A forensic/data recovery tool";
|
||||||
|
maintainers = with a.lib.maintainers;
|
||||||
|
[
|
||||||
|
raskin
|
||||||
|
];
|
||||||
|
platforms = with a.lib.platforms;
|
||||||
|
linux;
|
||||||
|
license = "IBM Public License";
|
||||||
|
};
|
||||||
|
passthru = {
|
||||||
|
updateInfo = {
|
||||||
|
downloadPage = "http://sourceforge.net/projects/sleuthkit/files/sleuthkit";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}) x
|
||||||
|
|
@ -1286,6 +1286,8 @@ let
|
|||||||
|
|
||||||
siege = callPackage ../tools/networking/siege {};
|
siege = callPackage ../tools/networking/siege {};
|
||||||
|
|
||||||
|
sleuthkit = callPackage ../tools/system/sleuthkit {};
|
||||||
|
|
||||||
slimrat = callPackage ../tools/networking/slimrat {
|
slimrat = callPackage ../tools/networking/slimrat {
|
||||||
inherit (perlPackages) WWWMechanize LWP;
|
inherit (perlPackages) WWWMechanize LWP;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user