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

23 lines
576 B
Nix
Raw Normal View History

{ stdenv, fetchurl, buildPythonPackage, pycrypto }:
buildPythonPackage rec {
2014-07-11 17:10:26 +02:00
namePrefix = "";
name = "volatility-2.3.1";
2014-07-11 17:10:26 +02:00
src = fetchurl {
url = "http://volatility.googlecode.com/files/${name}.tar.gz";
sha256 = "bb1411fc671e0bf550a31e534fb1991b2f940f1dce1ebe4ce2fb627aec40726c";
};
2014-07-11 17:10:26 +02:00
doCheck = false;
2014-07-11 17:10:26 +02:00
propagatedBuildInputs = [ pycrypto ];
2014-07-11 17:10:26 +02:00
meta = with stdenv.lib; {
homepage = https://code.google.com/p/volatility;
description = "advanced memory forensics framework";
maintainers = with maintainers; [ bosu ];
license = "GPLv2+";
};
}