mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
binwalk: remove useless dep on mtdutils
This commit is contained in:
parent
ed1355e0f1
commit
3c26e5977c
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchFromGitHub, python, wrapPython, curses, mtdutils, zlib, xz, ncompress, gzip, bzip2, gnutar, p7zip, cabextract
|
||||
{ stdenv, fetchFromGitHub, python, wrapPython, curses, zlib, xz, ncompress, gzip, bzip2, gnutar, p7zip, cabextract
|
||||
, pyqtgraph ? null
|
||||
, visualizationSupport ? false }:
|
||||
|
||||
|
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
|||
pythonPath = with stdenv.lib; [ curses ]
|
||||
++ optional visualizationSupport [ pyqtgraph ];
|
||||
|
||||
propagatedBuildInputs = with stdenv.lib; [ python wrapPython curses mtdutils zlib xz ncompress gzip bzip2 gnutar p7zip cabextract ]
|
||||
propagatedBuildInputs = with stdenv.lib; [ python wrapPython curses zlib xz ncompress gzip bzip2 gnutar p7zip cabextract ]
|
||||
++ optional visualizationSupport [ pyqtgraph ];
|
||||
|
||||
postInstall = "wrapPythonPrograms";
|
||||
|
|
Loading…
Reference in a new issue