mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add rust-winnow-0.4.
* gnu/packages/crates-io.scm (rust-winnow-0.4): New variable.
This commit is contained in:
parent
dfa9d4e830
commit
17a47fdf36
1 changed files with 26 additions and 0 deletions
|
@ -72490,6 +72490,32 @@ (define-public rust-windows-x86-64-msvc-0.28
|
|||
(base32
|
||||
"17z8q25pd3dp6b84qm9nlayd3ym78sbryxlqmgcxvz9vpmy8qarz"))))))
|
||||
|
||||
(define-public rust-winnow-0.4
|
||||
(package
|
||||
(name "rust-winnow")
|
||||
(version "0.4.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "winnow" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0a2b9f0n6fpn2a88jfbp1kdjj6xrhvf8arnny67qsjb6djrp12df"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t ; Cut the dependency graph.
|
||||
#:cargo-inputs
|
||||
(("rust-anstyle" ,rust-anstyle-0.2)
|
||||
("rust-concolor" ,rust-concolor-0.0.8)
|
||||
("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-winreg-0.10
|
||||
(package
|
||||
(name "rust-winreg")
|
||||
|
|
Loading…
Reference in a new issue