mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
volatility: fix indentation
This commit is contained in:
parent
50cfc4a847
commit
1ad2f843e2
@ -1,22 +1,22 @@
|
|||||||
{ stdenv, fetchurl, buildPythonPackage, pycrypto }:
|
{ stdenv, fetchurl, buildPythonPackage, pycrypto }:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
namePrefix = "";
|
namePrefix = "";
|
||||||
name = "volatility-2.3.1";
|
name = "volatility-2.3.1";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://volatility.googlecode.com/files/${name}.tar.gz";
|
url = "http://volatility.googlecode.com/files/${name}.tar.gz";
|
||||||
sha256 = "bb1411fc671e0bf550a31e534fb1991b2f940f1dce1ebe4ce2fb627aec40726c";
|
sha256 = "bb1411fc671e0bf550a31e534fb1991b2f940f1dce1ebe4ce2fb627aec40726c";
|
||||||
};
|
};
|
||||||
|
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
propagatedBuildInputs = [ pycrypto ];
|
propagatedBuildInputs = [ pycrypto ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://code.google.com/p/volatility;
|
homepage = https://code.google.com/p/volatility;
|
||||||
description = "advanced memory forensics framework";
|
description = "advanced memory forensics framework";
|
||||||
maintainers = with maintainers; [ bosu ];
|
maintainers = with maintainers; [ bosu ];
|
||||||
license = "GPLv2+";
|
license = "GPLv2+";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user