1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

volatility: fix indentation

This commit is contained in:
Bjørn Forsman 2014-07-11 17:10:26 +02:00
parent 50cfc4a847
commit 1ad2f843e2

View file

@ -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+";
};
}