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

22 lines
599 B
Nix
Raw Normal View History

2016-08-14 14:28:05 +02:00
{ stdenv, fetchurl, pythonPackages }:
2016-08-14 14:28:05 +02:00
pythonPackages.buildPythonApplication rec {
2014-11-12 21:35:42 +01:00
name = "volatility-2.4";
2014-07-11 17:10:26 +02:00
src = fetchurl {
2014-11-12 21:35:42 +01:00
url = "http://downloads.volatilityfoundation.org/releases/2.4/${name}.tar.gz";
sha256 = "1wffrkvj2lrkqhwamyix9fy05y6g6w8h1sz2iqlm6i6ag7yxykv8";
2014-07-11 17:10:26 +02:00
};
2014-07-11 17:10:26 +02:00
doCheck = false;
2016-08-14 14:28:05 +02:00
propagatedBuildInputs = [ pythonPackages.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";
2014-07-11 17:10:26 +02:00
maintainers = with maintainers; [ bosu ];
license = stdenv.lib.licenses.gpl2Plus;
2014-07-11 17:10:26 +02:00
};
}