mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add rust-nom8-0.2.
* gnu/packages/crates-io.scm (rust-nom8-0.2): New variable.
This commit is contained in:
parent
447779a13d
commit
943fd642f1
1 changed files with 24 additions and 0 deletions
|
@ -37315,6 +37315,30 @@ (define-public rust-nom-1
|
|||
;; This is an ancient version and all inputs are optional.
|
||||
`(#:skip-build? #t))))
|
||||
|
||||
(define-public rust-nom8-0.2
|
||||
(package
|
||||
(name "rust-nom8")
|
||||
(version "0.2.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "nom8" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1y6jzabxyrl05vxnh63r66ac2fh0symg5fnynxm4ii3zkif580df"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; Not all files included.
|
||||
#:cargo-inputs
|
||||
(("rust-memchr" ,rust-memchr-2))
|
||||
#:cargo-development-inputs
|
||||
(("rust-doc-comment" ,rust-doc-comment-0.3)
|
||||
("rust-proptest" ,rust-proptest-1))))
|
||||
(home-page "https://github.com/epage/nom-experimental")
|
||||
(synopsis "Byte-oriented, zero-copy, parser combinators library")
|
||||
(description "This package provides a byte-oriented, zero-copy, parser
|
||||
combinators library (fork for proposals for v8)")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-nom-derive-0.7
|
||||
(package
|
||||
(name "rust-nom-derive")
|
||||
|
|
Loading…
Reference in a new issue