Merge pull request #4203 from k0ral/binwalk
Added binwalk package, and its dependency pyqtgraph.
This commit is contained in:
commit
bffbed3343
3 changed files with 66 additions and 0 deletions
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, mtdutils, zlib, xz, ncompress, gzip, bzip2, gnutar, p7zip, cabextract
|
||||
, 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 mtdutils zlib xz ncompress gzip bzip2 gnutar p7zip cabextract ]
|
||||
++ 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;
|
||||
};
|
||||
}
|
|
@ -589,6 +589,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;
|
||||
|
|
|
@ -6608,6 +6608,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 a new issue