me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-elf-0.0.10.

* gnu/packages/crates-io.scm (rust-elf-0.0.10): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
master
Milkey Mouse 2021-08-31 20:54:04 -07:00 committed by Nicolas Goaziou
parent a66fb6d8f7
commit 3af06a4d37
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 22 additions and 0 deletions

View File

@ -14643,6 +14643,28 @@ signing, and verification in pure Rust.")
@code{Right} is a general purpose sum type with two cases.") @code{Right} is a general purpose sum type with two cases.")
(license (list license:expat license:asl2.0)))) (license (list license:expat license:asl2.0))))
(define-public rust-elf-0.0.10
(package
(name "rust-elf")
(version "0.0.10")
(source
(origin
(method url-fetch)
(uri (crate-uri "elf" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"1xcpf7jdmrl7rdmd6009grahvgp3k695h5x4cadrpr70vcaxwha8"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-byteorder" ,rust-byteorder-0.5))))
(home-page "https://github.com/cole14/rust-elf/")
(synopsis "Library for parsing ELF files")
(description
"This package provides a pure-Rust library for parsing ELF files.")
(license (list license:expat license:asl2.0))))
(define-public rust-emacs-0.11 (define-public rust-emacs-0.11
(package (package
(name "rust-emacs") (name "rust-emacs")