me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-ron-0.4.

* gnu/packages/crates-io.scm (rust-ron-0.4): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
John Soo 2019-12-14 20:35:29 -08:00 committed by Efraim Flashner
parent 6db6226222
commit d4e9927c85
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 29 additions and 0 deletions

View File

@ -5979,6 +5979,35 @@ uses finite automata and guarantees linear time matching on all inputs.")
(license (list license:asl2.0
license:expat))))
(define-public rust-ron-0.4
(package
(name "rust-ron")
(version "0.4.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "ron" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"1mrqdgw3w0yypg24jyq9mphp4zr9lr0ks7yam82m4n34x6njijyr"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-base64" ,rust-base64-0.10)
("rust-bitflags" ,rust-bitflags-1)
("rust-serde" ,rust-serde-1.0))
#:cargo-development-inputs
(("rust-serde-bytes" ,rust-serde-bytes-0.11)
("rust-serde-json" ,rust-serde-json-1.0))))
(home-page "https://github.com/ron-rs/ron")
(synopsis "Rusty Object Notation")
(description "Rusty Object Notation.")
(license (list license:asl2.0
license:expat))))
(define-public rust-rustc-demangle-0.1
(package
(name "rust-rustc-demangle")