me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-weedle-0.10.

* gnu/packages/crates-io.scm (rust-weedle-0.10): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
Valentin Ignatev 2020-02-02 00:53:45 +03:00 committed by Efraim Flashner
parent 8d715e6e75
commit c4f37fc1e0
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 22 additions and 0 deletions

View File

@ -19470,6 +19470,28 @@ attribute that is not in the shared backend crate.")
(license (list license:asl2.0
license:expat))))
(define-public rust-weedle-0.10
(package
(name "rust-weedle")
(version "0.10.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "weedle" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"0r0i2kllvkn9jil6cjzxdi1zsc6p1gjyk751w8lyclaii1q3zd1v"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-nom" ,rust-nom-4.2))))
(home-page "https://github.com/rustwasm/weedle")
(synopsis "WebIDL Parser")
(description
"This package provides a WebIDL Parser.")
(license license:expat)))
(define-public rust-which-2.0
(package
(name "rust-which")