me
/
guix
Archived
1
0
Fork 0

gnu: Add python-archinfo.

* gnu/packages/emulators.scm (python-archinfo): New variable.

Signed-off-by: jgart <jgart@dismail.de>
Sören Tempel 2024-07-11 23:27:18 +02:00 committed by jgart
parent 2ef047f678
commit c31c325a12
No known key found for this signature in database
GPG Key ID: A52AA2B477B6DD35
1 changed files with 28 additions and 0 deletions

View File

@ -67,6 +67,7 @@
#:use-module (gnu packages cross-base)
#:use-module (gnu packages curl)
#:use-module (gnu packages digest)
#:use-module (gnu packages engineering)
#:use-module (gnu packages elf)
#:use-module (gnu packages flex)
#:use-module (gnu packages fltk)
@ -2644,6 +2645,33 @@ and offers an intuitive architecture-neutral API for interacting with
assembly for these architectures.")
(license license:gpl2)))
(define-public python-archinfo
(package
(name "python-archinfo")
;; Must be the same version as python-angr.
(version "9.2.46")
(source
(origin
(method url-fetch)
(uri (pypi-uri "archinfo" version))
(sha256
(base32 "037xfq3wcf8ngayxz9623l4646m780v2102mfbygpzbkkjha1966"))))
(build-system pyproject-build-system)
(propagated-inputs (list python-capstone python-keystone-engine))
(arguments
`(#:phases (modify-phases %standard-phases
(replace 'check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(with-directory-excursion "tests"
(invoke "python" "-m" "unittest"))))))))
(home-page "https://github.com/angr/archinfo")
(synopsis "Extract architecture-specific information from binaries")
(description
"Collection of classes that contain architecture-specific information
information. Useful for cross-architecture tools (such as @code{python-pyvex}).")
(license license:bsd-2)))
(define-public emu8051
(let ((commit "5dc681275151c4a5d7b85ec9ff4ceb1b25abd5a8")
(revision "1"))