From d92703d15d8f1c29776bf86869034aa679654f01 Mon Sep 17 00:00:00 2001 From: John Soo Date: Sat, 14 Dec 2019 18:34:39 -0800 Subject: [PATCH 106/206] gnu: Add rust-goblin-0.0. * gnu/packages/crates-io.scm (rust-goblin-0.0): New variable. --- gnu/packages/crates-io.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index b6e782e062..9839955b4f 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -2446,6 +2446,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 `(,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 + ;; `(#: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") -- 2.24.0