uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
73
pkgs/development/python-modules/binwalk/default.nix
Normal file
73
pkgs/development/python-modules/binwalk/default.nix
Normal file
|
|
@ -0,0 +1,73 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, fetchpatch
|
||||
, stdenv
|
||||
, zlib
|
||||
, xz
|
||||
, gzip
|
||||
, bzip2
|
||||
, gnutar
|
||||
, p7zip
|
||||
, cabextract
|
||||
, cramfsprogs
|
||||
, cramfsswap
|
||||
, sasquatch
|
||||
, squashfsTools
|
||||
, matplotlib
|
||||
, nose
|
||||
, pycrypto
|
||||
, pyqtgraph
|
||||
, visualizationSupport ? false }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "binwalk${lib.optionalString visualizationSupport "-full"}";
|
||||
version = "2.3.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ReFirmLabs";
|
||||
repo = "binwalk";
|
||||
rev = "v${version}";
|
||||
sha256 = "0phqyqv34vhh80dgipiggs4n3iq2vfjk9ywx2c5d8g61vzgbd2g8";
|
||||
};
|
||||
|
||||
patches = [
|
||||
# test_firmware_zip fails with 2.3.3 upgrade
|
||||
# https://github.com/ReFirmLabs/binwalk/issues/566
|
||||
(fetchpatch {
|
||||
url = "https://github.com/ReFirmLabs/binwalk/commit/dd4f2efd275c9dd1001130e82e0f985110cd2754.patch";
|
||||
sha256 = "1707n4nf1d1ay1yn4i8qlrvj2c1120g88hjwyklpsc2s2dcnqj9r";
|
||||
includes = [
|
||||
"testing/tests/test_firmware_zip.py"
|
||||
];
|
||||
revert = true;
|
||||
})
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [ zlib xz gzip bzip2 gnutar p7zip cabextract squashfsTools xz pycrypto ]
|
||||
++ lib.optionals visualizationSupport [ matplotlib pyqtgraph ]
|
||||
++ lib.optionals (!stdenv.isDarwin) [ cramfsprogs cramfsswap sasquatch ];
|
||||
|
||||
# setup.py only installs version.py during install, not test
|
||||
postPatch = ''
|
||||
echo '__version__ = "${version}"' > src/binwalk/core/version.py
|
||||
'';
|
||||
|
||||
# binwalk wants to access ~/.config/binwalk/magic
|
||||
preCheck = ''
|
||||
HOME=$(mktemp -d)
|
||||
'';
|
||||
|
||||
checkInputs = [ nose ];
|
||||
|
||||
pythonImportsCheck = [ "binwalk" ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/ReFirmLabs/binwalk";
|
||||
description = "A tool for searching a given binary image for embedded files";
|
||||
maintainers = [ maintainers.koral ];
|
||||
license = licenses.mit;
|
||||
# Signature Exception: [Errno 1] Operation not permitted: '/testing/tests/input-vectors/_dirtraversal.tar.extracted'
|
||||
broken = (stdenv.isDarwin && stdenv.isx86_64); # broken on hydra since 2021-11-02
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue