diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-11-26 00:18:11 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-11-26 21:22:05 +0000 |
| commit | 27cf3437aa05ab8599b5e4339f178aec377c412d (patch) | |
| tree | d89d55faada15b49da8a686767a068ccd30931eb | |
| parent | 9afa48113af60fce844884577f73b7239a51b98a (diff) | |
gnu: Add python-psptrace.
* gnu/packages/embedded.scm (python-psptrace, python-psptrace-bootstrap):
New variables.
Change-Id: Ie36a997170c7623790b3fabe4c786513031959c2
| -rw-r--r-- | gnu/packages/embedded.scm | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/gnu/packages/embedded.scm b/gnu/packages/embedded.scm index b0064f4a1ee..c38e1298c91 100644 --- a/gnu/packages/embedded.scm +++ b/gnu/packages/embedded.scm @@ -1993,6 +1993,42 @@ and Zilog Z80 families, plus many of their variants.") (description "PSPTool is a tool for dealing with AMD binary blobs") (license license:gpl3+))) +(define-public python-psptrace + (package + (name "python-psptrace") + (version "0.7") + (source + (origin + (method url-fetch) + (uri (pypi-uri "psptrace" version)) + (sha256 + (base32 "1mrympnpkkns2dxq34h9x9qn667ihdvbbf0wpmbp3jli0n7bj7ih")))) + (build-system pyproject-build-system) + (arguments + (list #:tests? #f)) ;no tests in PyPI or Git + (native-inputs + (list python-setuptools)) + (propagated-inputs + (list python-prettytable + python-psptool)) + (home-page "https://github.com/PSPReverse/PSPTrace") + (synopsis "Capture of an AMD boot procedure") + (description + "PSPTrace is a tool for correlating an SPI capture of an AMD boot +procedure to the PSP firmware components.") + (license license:gpl3+))) + +(define-public python-psptrace-bootstrap + (hidden-package + (package/inherit python-psptrace + (name "python-psptrace") + (arguments + (list #:tests? #f + #:phases + #~(modify-phases %standard-phases + (delete 'sanity-check)))) + (propagated-inputs '())))) + (define-public agent-proxy (let ((commit "8927798a71d246871ea8fc22b4512296a3fa1765") (revision "0")) |
