diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 6d4b54994d..5ec06e82fb 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -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")