mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-18 17:01:51 -05:00
gnu: Add rust-utf8parse-0.2.
* gnu/packages/crates-io.scm (rust-utf8parse-0.2): New variable. (rust-utf8parse-0.1): Inherit from rust-utf8parse-0.2.
This commit is contained in:
parent
74287130ac
commit
5fea1f5cab
1 changed files with 21 additions and 6 deletions
|
@ -34921,8 +34921,28 @@ (define-public rust-utf8-width-0.1
|
||||||
first byte.")
|
first byte.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public rust-utf8parse-0.2
|
||||||
|
(package
|
||||||
|
(name "rust-utf8parse")
|
||||||
|
(version "0.2.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "utf8parse" version))
|
||||||
|
(file-name
|
||||||
|
(string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0wjkvy22cxg023vkmvq2wwkgqyqam0d4pjld3m13blfg594lnvlk"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(home-page "https://github.com/jwilm/vte")
|
||||||
|
(synopsis "Table-driven UTF-8 parser")
|
||||||
|
(description "This package provides a table-driven UTF-8 parser.")
|
||||||
|
(license (list license:asl2.0 license:expat))))
|
||||||
|
|
||||||
(define-public rust-utf8parse-0.1
|
(define-public rust-utf8parse-0.1
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-utf8parse-0.2)
|
||||||
(name "rust-utf8parse")
|
(name "rust-utf8parse")
|
||||||
(version "0.1.1")
|
(version "0.1.1")
|
||||||
(source
|
(source
|
||||||
|
@ -34933,12 +34953,7 @@ (define-public rust-utf8parse-0.1
|
||||||
(string-append name "-" version ".tar.gz"))
|
(string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0zamsj2986shm4x9zncjf2m5qy9scaw7qnxw4f89b2afpg6a8wl7"))))
|
"0zamsj2986shm4x9zncjf2m5qy9scaw7qnxw4f89b2afpg6a8wl7"))))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(home-page "https://github.com/jwilm/vte")
|
|
||||||
(synopsis "Table-driven UTF-8 parser")
|
|
||||||
(description "This package provides a table-driven UTF-8 parser.")
|
|
||||||
(license (list license:asl2.0 license:expat))))
|
|
||||||
|
|
||||||
(define-public rust-uuid-0.8
|
(define-public rust-uuid-0.8
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue