me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-nom8-0.2.

* gnu/packages/crates-io.scm (rust-nom8-0.2): New variable.
master
Efraim Flashner 2023-02-22 12:17:26 +02:00
parent 447779a13d
commit 943fd642f1
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 24 additions and 0 deletions

View File

@ -37315,6 +37315,30 @@ combinators library.")
;; This is an ancient version and all inputs are optional. ;; This is an ancient version and all inputs are optional.
`(#:skip-build? #t)))) `(#: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 (define-public rust-nom-derive-0.7
(package (package
(name "rust-nom-derive") (name "rust-nom-derive")