me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-winnow-0.6.

* gnu/packages/crates-io.scm (rust-winnow-0.6): New variable.
(rust-winnow-0.5): Inherit from rust-winnow-0.6.

Change-Id: I7eb055597f8bccb3020cb814ed1c7c57b380aa19
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
VÖRÖSKŐI András 2024-02-24 21:39:58 +01:00 committed by Efraim Flashner
parent 6b14b806b4
commit 42141a12bf
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 27 additions and 7 deletions

View File

@ -82817,8 +82817,34 @@ UTF-32 types are provided, including support for malformed encoding.")
command-line, uniformly on all platforms")
(license (list license:asl2.0 license:expat))))
(define-public rust-winnow-0.6
(package
(name "rust-winnow")
(version "0.6.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "winnow" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0y71bhxjhjf62c1631rpvmjyz3fmhg5i6jfb3z3kxk0mgz292hbs"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t ; Cut the dependency graph.
#:cargo-inputs (("rust-anstream" ,rust-anstream-0.3)
("rust-anstyle" ,rust-anstyle-1)
("rust-is-terminal" ,rust-is-terminal-0.4)
("rust-memchr" ,rust-memchr-2)
("rust-terminal-size" ,rust-terminal-size-0.2))))
(home-page "https://github.com/winnow-rs/winnow")
(synopsis "Byte-oriented, zero-copy, parser combinators library")
(description "This package provides a byte-oriented, zero-copy, parser
combinators library.")
(license license:expat)))
(define-public rust-winnow-0.5
(package
(inherit rust-winnow-0.6)
(name "rust-winnow")
(version "0.5.31")
(source
@ -82828,7 +82854,6 @@ command-line, uniformly on all platforms")
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0734xa05a1x1wg2kcphdhfb39pdcy5qpaf1sjll6qk8kdcp8i94p"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t ; Cut the dependency graph.
#:cargo-inputs
@ -82836,12 +82861,7 @@ command-line, uniformly on all platforms")
("rust-anstyle" ,rust-anstyle-1)
("rust-is-terminal" ,rust-is-terminal-0.4)
("rust-memchr" ,rust-memchr-2)
("rust-terminal-size" ,rust-terminal-size-0.2))))
(home-page "https://github.com/winnow-rs/winnow")
(synopsis "Byte-oriented, zero-copy, parser combinators library")
(description "This package provides a byte-oriented, zero-copy, parser
combinators library.")
(license license:expat)))
("rust-terminal-size" ,rust-terminal-size-0.2))))))
(define-public rust-winnow-0.4
(package