volatility: 2.4 -> 2.6, refactor, update outdated homepage

This commit is contained in:
Willi Butz 2017-08-04 19:02:05 +02:00 committed by Robin Gloster
parent 37bf3c8782
commit 2e29774f4c

View file

@ -1,19 +1,20 @@
{ stdenv, fetchurl, pythonPackages }:
pythonPackages.buildPythonApplication rec {
name = "volatility-2.4";
version = "2.6";
name = "volatility-${version}";
src = fetchurl {
url = "http://downloads.volatilityfoundation.org/releases/2.4/${name}.tar.gz";
sha256 = "1wffrkvj2lrkqhwamyix9fy05y6g6w8h1sz2iqlm6i6ag7yxykv8";
url = "http://downloads.volatilityfoundation.org/releases/${version}/${name}.zip";
sha256 = "15cjrx31nnqa3bpjkv0x05j7f2sb7pq46a72zh7qg55zf86hawsv";
};
doCheck = false;
propagatedBuildInputs = [ pythonPackages.pycrypto ];
propagatedBuildInputs = [ pythonPackages.pycrypto pythonPackages.distorm3 ];
meta = with stdenv.lib; {
homepage = https://code.google.com/p/volatility;
homepage = http://www.volatilityfoundation.org/;
description = "Advanced memory forensics framework";
maintainers = with maintainers; [ bosu ];
license = stdenv.lib.licenses.gpl2Plus;