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 }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
namePrefix = "";
|
||||
name = "volatility-2.3.1";
|
||||
namePrefix = "";
|
||||
name = "volatility-2.3.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://volatility.googlecode.com/files/${name}.tar.gz";
|
||||
sha256 = "bb1411fc671e0bf550a31e534fb1991b2f940f1dce1ebe4ce2fb627aec40726c";
|
||||
};
|
||||
src = fetchurl {
|
||||
url = "http://volatility.googlecode.com/files/${name}.tar.gz";
|
||||
sha256 = "bb1411fc671e0bf550a31e534fb1991b2f940f1dce1ebe4ce2fb627aec40726c";
|
||||
};
|
||||
|
||||
doCheck = false;
|
||||
doCheck = false;
|
||||
|
||||
propagatedBuildInputs = [ pycrypto ];
|
||||
propagatedBuildInputs = [ pycrypto ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://code.google.com/p/volatility;
|
||||
description = "advanced memory forensics framework";
|
||||
maintainers = with maintainers; [ bosu ];
|
||||
license = "GPLv2+";
|
||||
};
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://code.google.com/p/volatility;
|
||||
description = "advanced memory forensics framework";
|
||||
maintainers = with maintainers; [ bosu ];
|
||||
license = "GPLv2+";
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user