mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-14 19:05:10 -05:00
gnu: Add rust-pest-2.1.
* gnu/packages/crates-io.scm (rust-pest-2.1): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
4eea286c28
commit
1ac58b8297
1 changed files with 25 additions and 0 deletions
|
@ -4676,6 +4676,31 @@ (define-public rust-permutohedron-0.2
|
|||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
|
||||
(define-public rust-pest-2.1
|
||||
(package
|
||||
(name "rust-pest")
|
||||
(version "2.1.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "pest" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"134686mwxm73asbiads53zfchqvvcrsrsyax2cghfcizmvg8ac4k"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-serde" ,rust-serde-1.0)
|
||||
("rust-serde-json" ,rust-serde-json-1.0)
|
||||
("rust-ucd-trie" ,rust-ucd-trie-0.1))))
|
||||
(home-page "https://pest.rs/")
|
||||
(synopsis "The Elegant Parser")
|
||||
(description "The Elegant Parser.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-petgraph-0.4
|
||||
(package
|
||||
(name "rust-petgraph")
|
||||
|
|
Loading…
Reference in a new issue