d5cceedbd1
Since aliases are disallowed in nixpkgs, this makes usage of Python 2 which is EOL more explicit.
25 lines
632 B
Nix
25 lines
632 B
Nix
{ lib, fetchFromGitHub, python2Packages }:
|
|
|
|
python2Packages.buildPythonApplication rec {
|
|
pname = "volatility";
|
|
version = "2.6.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "volatilityfoundation";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "1v92allp3cv3akk71kljcwxr27h1k067dsq7j9h8jnlwk9jxh6rf";
|
|
};
|
|
|
|
doCheck = false;
|
|
|
|
propagatedBuildInputs = with python2Packages; [ pycrypto distorm3 pillow ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.volatilityfoundation.org/";
|
|
description = "Advanced memory forensics framework";
|
|
maintainers = with maintainers; [ bosu ];
|
|
license = lib.licenses.gpl2Plus;
|
|
};
|
|
}
|