diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-10-16 02:00:01 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-10-16 02:00:01 +0200 |
commit | 591966d2d6a0866cc12f4bd5727de515b1ae898f (patch) | |
tree | ec89dbda192fdfb85205fde7f7f458c63134e308 /gnu | |
parent | 2e7ac367346cfbd2f0c4c73d25db6905556bacb7 (diff) | |
download | guix-591966d2d6a0866cc12f4bd5727de515b1ae898f.tar.gz |
gnu: binwalk: Update to 2.3.3.
* gnu/packages/python-xyz.scm (binwalk): Update to 2.3.3. [source]: Add snippet.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/python-xyz.scm | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index fe57e60433..51136d8e6e 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -18226,7 +18226,7 @@ without requiring an event loop, useful for creative responsive GUIs.") (define-public binwalk (package (name "binwalk") - (version "2.3.2") + (version "2.3.3") (source (origin (method git-fetch) @@ -18235,7 +18235,13 @@ without requiring an event loop, useful for creative responsive GUIs.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "01dalxw07c42ka4fqpixcacvy42h04ya909lzpmsblr9s2xdgwcm")))) + (base32 "0phqyqv34vhh80dgipiggs4n3iq2vfjk9ywx2c5d8g61vzgbd2g8")) + (modules '((guix build utils))) + (snippet + #~(begin + (for-each delete-file + (list "testing/tests/input-vectors/firmware.zip" + "testing/tests/test_firmware_zip.py")))))) (build-system python-build-system) (arguments `(#:phases |