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-paste-impl-0.1.

* gnu/packages/crates-io.scm (rust-paste-impl-0.1).

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
John Soo 2019-12-15 09:02:00 -08:00 committed by Efraim Flashner
parent a87f77b9cb
commit 1b63d8ed7f
Signed by untrusted user: efraim
GPG key ID: 41AAE7DCCA3D8351

View file

@ -5160,6 +5160,33 @@ deserialization, and interpreter in Rust.")
(license (list license:asl2.0
license:expat))))
(define-public rust-paste-impl-0.1
(package
(name "rust-paste-impl")
(version "0.1.5")
(source
(origin
(method url-fetch)
(uri (crate-uri "paste-impl" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"1rkh8nixmb7r1y0mjnsz62p6r1bqah5ciri7bwhmgcmq4gk9drr6"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5)
("rust-proc-macro2" ,rust-proc-macro2-0.4)
("rust-quote" ,rust-quote-1.0)
("rust-syn" ,rust-syn-0.15))))
(home-page "https://github.com/dtolnay/paste")
(synopsis "Implementation detail of the paste crate")
(description
"Implementation detail of the paste crate.")
(license (list license:asl2.0 license:expat))))
(define-public rust-pcre2-0.2
(package
(name "rust-pcre2")