46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
23 lines
657 B
Nix
23 lines
657 B
Nix
{ stdenv, fetchurl, pythonPackages }:
|
|
|
|
pythonPackages.buildPythonApplication rec {
|
|
version = "2.6";
|
|
pname = "volatility";
|
|
|
|
src = fetchurl {
|
|
url = "https://downloads.volatilityfoundation.org/releases/${version}/${pname}-${version}.zip";
|
|
sha256 = "15cjrx31nnqa3bpjkv0x05j7f2sb7pq46a72zh7qg55zf86hawsv";
|
|
};
|
|
|
|
doCheck = false;
|
|
|
|
propagatedBuildInputs = [ pythonPackages.pycrypto pythonPackages.distorm3 ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://www.volatilityfoundation.org/;
|
|
description = "Advanced memory forensics framework";
|
|
maintainers = with maintainers; [ bosu ];
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
};
|
|
}
|