Added binwalk package, and its dependency pyqtgraph.
This commit is contained in:
parent
2247f3a8d3
commit
47c2b205ae
32
pkgs/tools/misc/binwalk/default.nix
Normal file
32
pkgs/tools/misc/binwalk/default.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ stdenv, fetchFromGitHub, python, wrapPython, curses
|
||||
, pyqtgraph ? null
|
||||
, visualizationSupport ? false }:
|
||||
|
||||
assert visualizationSupport -> pyqtgraph != null;
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "2.0.1";
|
||||
name = "binwalk-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "devttys0";
|
||||
repo = "binwalk";
|
||||
rev = "v${version}";
|
||||
sha256 = "1r5389lk3gk8y4ksrfljyb97l6pwnwvv8g1slbgr20avkzgw8zmn";
|
||||
};
|
||||
|
||||
pythonPath = with stdenv.lib; [ curses ]
|
||||
++ optional visualizationSupport [ pyqtgraph ];
|
||||
|
||||
propagatedBuildInputs = with stdenv.lib; [ python wrapPython curses ]
|
||||
++ optional visualizationSupport [ pyqtgraph ];
|
||||
|
||||
postInstall = "wrapPythonPrograms";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://binwalk.org";
|
||||
description = "A tool for searching a given binary image for embedded files";
|
||||
platforms = platforms.all;
|
||||
maintainers = maintainers.koral;
|
||||
};
|
||||
}
|
@ -587,6 +587,20 @@ let
|
||||
|
||||
bindfs = callPackage ../tools/filesystems/bindfs { };
|
||||
|
||||
binwalk = callPackage ../tools/misc/binwalk {
|
||||
python = pythonFull;
|
||||
wrapPython = pythonPackages.wrapPython;
|
||||
curses = pythonPackages.curses;
|
||||
};
|
||||
|
||||
binwalk-full = callPackage ../tools/misc/binwalk {
|
||||
python = pythonFull;
|
||||
wrapPython = pythonPackages.wrapPython;
|
||||
curses = pythonPackages.curses;
|
||||
visualizationSupport = true;
|
||||
pyqtgraph = pythonPackages.pyqtgraph;
|
||||
};
|
||||
|
||||
bitbucket-cli = pythonPackages.bitbucket-cli;
|
||||
|
||||
blockdiag = pythonPackages.blockdiag;
|
||||
|
@ -6607,6 +6607,26 @@ let
|
||||
};
|
||||
});
|
||||
|
||||
pyqtgraph = buildPythonPackage rec {
|
||||
name = "pyqtgraph-${version}";
|
||||
version = "0.9.8";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/p/pyqtgraph/${name}.tar.gz";
|
||||
sha256 = "1fnhj26d9qrqqmjx092m1qspclh3mia3vag7rji5wciw0plpszi5";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ scipy numpy pyqt4 pyopengl ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Scientific Graphics and GUI Library for Python";
|
||||
homepage = http://www.pyqtgraph.org/;
|
||||
license = licenses.mit;
|
||||
platforms = platforms.unix;
|
||||
maintainers = [ maintainers.koral ];
|
||||
};
|
||||
};
|
||||
|
||||
pyro3 = buildPythonPackage (rec {
|
||||
name = "Pyro-3.16";
|
||||
disabled = isPy3k;
|
||||
|
Loading…
Reference in New Issue
Block a user