Archived
1
0
Fork 0

gnu: binwalk: Update to 2.3.2.

* gnu/packages/python-xyz.scm (binwalk): Update to 2.3.2.
[arguments]: Don't explicitly return #t from phases.
This commit is contained in:
Tobias Geerinckx-Rice 2021-11-01 00:13:26 +01:00
parent 1872c00df5
commit f3d5d572de
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -16443,7 +16443,7 @@ binary or text.")
(define-public binwalk (define-public binwalk
(package (package
(name "binwalk") (name "binwalk")
(version "2.2.0") (version "2.3.2")
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
@ -16452,8 +16452,7 @@ binary or text.")
(commit (string-append "v" version)))) (commit (string-append "v" version))))
(file-name (git-file-name name version)) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32 "01dalxw07c42ka4fqpixcacvy42h04ya909lzpmsblr9s2xdgwcm"))))
"1bxgj569fzwv6jhcbl864nmlsi9x1k1r20aywjxc8b9b1zgqrlvc"))))
(build-system python-build-system) (build-system python-build-system)
(arguments (arguments
`(#:phases `(#:phases
@ -16464,8 +16463,7 @@ binary or text.")
(string-append (string-append
(getcwd) "/src/" (getcwd) "/src/"
":" (getenv "PYTHONPATH"))) ":" (getenv "PYTHONPATH")))
(setenv "HOME" "") (setenv "HOME" ""))))))
#t)))))
(native-inputs (native-inputs
`(("python-coverage" ,python-coverage) `(("python-coverage" ,python-coverage)
("python-nose" ,python-nose))) ("python-nose" ,python-nose)))