diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-01-22 09:51:57 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-02-20 13:58:05 +0200 |
commit | 4c286395d49560e125c95ddb6370f332ff16923e (patch) | |
tree | 4107519f9f2569681650be00da81d35b0435812b /gnu | |
parent | 6204b092b43ca979a0ce4edb68e14587129ca7bb (diff) |
gnu: Add rust-goblin-0.8.
* gnu/packages/crates-io.scm (rust-goblin-0.8): New variable.
(rust-goblin-0.7): Inherit from rust-goblin-0.8.
Change-Id: Ie858c4c5e24ea04c02c0f504981cd0c3816e5734
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 33 |
1 files changed, 26 insertions, 7 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index fc321e94d1..cdc8f41b35 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -26922,8 +26922,33 @@ timers.") libraries GMP, MPFR, and MPC.") (license license:lgpl3+))) +(define-public rust-goblin-0.8 + (package + (name "rust-goblin") + (version "0.8.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "goblin" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "11wqipqx0dbimxy5612nxpx79qja43sxic95llcb34r0xpzs81xv")))) + (build-system cargo-build-system) + (arguments + `(#:tests? #f ; Not all files included. + #:cargo-inputs (("rust-log" ,rust-log-0.4) + ("rust-plain" ,rust-plain-0.2) + ("rust-scroll" ,rust-scroll-0.12)) + #:cargo-development-inputs (("rust-stderrlog" ,rust-stderrlog-0.5)))) + (home-page "https://github.com/m4b/goblin") + (synopsis "ELF, Mach-o, and PE binary parsing and loading crate") + (description "This package provides an ELF, Mach-o, and PE binary parsing +and loading crate.") + (license license:expat))) + (define-public rust-goblin-0.7 (package + (inherit rust-goblin-0.8) (name "rust-goblin") (version "0.7.1") (source (origin @@ -26933,18 +26958,12 @@ libraries GMP, MPFR, and MPC.") (sha256 (base32 "0d11fk9bdxzf228xpr8v6d6a01dib00khjg5bldk9kf2d51inz7j")))) - (build-system cargo-build-system) (arguments `(#:tests? #f ; Not all files included. #:cargo-inputs (("rust-log" ,rust-log-0.4) ("rust-plain" ,rust-plain-0.2) - ("rust-scroll" ,rust-scroll-0.11)))) - (home-page "https://github.com/m4b/goblin") - (synopsis "ELF, Mach-o, and PE binary parsing and loading crate") - (description "This package provides an ELF, Mach-o, and PE binary parsing -and loading crate.") - (license license:expat))) + ("rust-scroll" ,rust-scroll-0.11)))))) (define-public rust-goblin-0.6 (package |