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:
parent
6d95d023a0
commit
ea3616ea35
1 changed files with 27 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue