3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add rust-goblin-0.0.

* gnu/packages/crates-io.scm (rust-goblin-0.0): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
John Soo 2019-12-14 18:34:39 -08:00 committed by Efraim Flashner
parent 6d95d023a0
commit ea3616ea35
Signed by untrusted user: efraim
GPG key ID: 41AAE7DCCA3D8351

View file

@ -2431,6 +2431,33 @@ the process of matching one or more glob patterns against a single candidate
path simultaneously, and returning all of the globs that matched.")
(license (list license:expat license:unlicense))))
(define-public rust-goblin-0.0
(package
(name "rust-goblin")
(version "0.0.23")
(source
(origin
(method url-fetch)
(uri (crate-uri "goblin" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"1g92bl76dgc3v3rins61l811pkwsl3jif1x35h2jx33b7dsv8mmc"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-log" ,rust-log-0.4)
("rust-plain" ,rust-plain-0.2)
("rust-scroll" ,rust-scroll-0.9))))
(home-page "https://github.com/m4b/goblin")
(synopsis "Binary parsing and loading")
(description
"An impish, cross-platform, ELF, Mach-o, and PE binary parsing and
loading crate.")
(license license:expat)))
(define-public rust-grep-cli-0.1
(package
(name "rust-grep-cli")