gnu: Add rust-peg-runtime-0.6.

* gnu/packages/crates-io.scm (rust-peg-runtime-0.6): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
John Soo 2020-06-16 18:51:23 -07:00 committed by Efraim Flashner
parent a5dbc07d38
commit a2221c7511
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -15906,6 +15906,27 @@ (define-public rust-peeking-take-while-0.1
(license (list license:asl2.0
license:expat))))
(define-public rust-peg-runtime-0.6
(package
(name "rust-peg-runtime")
(version "0.6.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "peg-runtime" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"0r583cq923v0narrpq73qmp780yg4pablzklhrwnr64xwsbjh6hc"))))
(build-system cargo-build-system)
(home-page "https://github.com/kevinmehall/rust-peg")
(synopsis "Runtime support for rust-peg grammars")
(description
"PEG provides a Parsing Expression Grammar. This package provides
runtime support for rust-peg grammars. To use rust-peg, see the peg crate.")
(license license:expat)))
(define-public rust-percent-encoding-2.1
(package
(name "rust-percent-encoding")