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

24 lines
599 B
Nix
Raw Normal View History

{ stdenv, fetchurl, buildPythonPackage, pycrypto }:
buildPythonPackage rec {
2014-07-11 15:10:26 +00:00
namePrefix = "";
2014-11-12 20:35:42 +00:00
name = "volatility-2.4";
2014-07-11 15:10:26 +00:00
src = fetchurl {
2014-11-12 20:35:42 +00:00
url = "http://downloads.volatilityfoundation.org/releases/2.4/${name}.tar.gz";
sha256 = "1wffrkvj2lrkqhwamyix9fy05y6g6w8h1sz2iqlm6i6ag7yxykv8";
2014-07-11 15:10:26 +00:00
};
2014-07-11 15:10:26 +00:00
doCheck = false;
2014-07-11 15:10:26 +00:00
propagatedBuildInputs = [ pycrypto ];
2014-07-11 15:10:26 +00:00
meta = with stdenv.lib; {
homepage = https://code.google.com/p/volatility;
description = "advanced memory forensics framework";
maintainers = with maintainers; [ bosu ];
license = stdenv.lib.licenses.gpl2Plus;
2014-07-11 15:10:26 +00:00
};
}