summary refs log tree commit diff
path: root/pkgs/tools/security/volatility/default.nix
blob: 41e227cee7e36dcf8d798a90ceb47878f35a1672 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, buildPythonPackage, pycrypto }:

buildPythonPackage rec {
  namePrefix = "";
  name = "volatility-2.3.1";

  src = fetchurl {
    url = "http://volatility.googlecode.com/files/${name}.tar.gz";
    sha256 = "bb1411fc671e0bf550a31e534fb1991b2f940f1dce1ebe4ce2fb627aec40726c";
  };

  doCheck = false;

  propagatedBuildInputs = [ pycrypto ];

  meta = with stdenv.lib; {
    homepage = https://code.google.com/p/volatility;
    description = "advanced memory forensics framework";
    maintainers = with maintainers; [ bosu ];
    license = "GPLv2+";
  };
}