gnu: Add rust-paste-0.1.

* gnu/packages/crates-io.scm (rust-paste-0.1): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
John Soo 2019-12-15 09:03:19 -08:00 committed by Efraim Flashner
parent 1b63d8ed7f
commit ab0a2216d7
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -5160,6 +5160,31 @@ (define-public rust-parity-wasm-0.40
(license (list license:asl2.0
license:expat))))
(define-public rust-paste-0.1
(package
(name "rust-paste")
(version "0.1.5")
(source
(origin
(method url-fetch)
(uri (crate-uri "paste" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"0ygs077hlq8qlx5y46sfgrmhlqqgkmvvhn4x3y10arawalf4ljhz"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-paste-impl" ,rust-paste-impl-0.1)
("rust-proc-macro-hack" ,rust-proc-macro-hack-0.5))))
(home-page "https://github.com/dtolnay/paste")
(synopsis "Macros for all your token pasting needs")
(description
"Macros for all your token pasting needs.")
(license (list license:asl2.0 license:expat))))
(define-public rust-paste-impl-0.1
(package
(name "rust-paste-impl")