me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-utf8parse-0.1.

* gnu/packages/crates-io.scm (rust-utf8parse-0.1): New variable.
master
Valentin Ignatev 2020-01-15 03:14:52 +03:00 committed by Efraim Flashner
parent 97fb5b53fd
commit 5ea15d03e5
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 19 additions and 0 deletions

View File

@ -13583,6 +13583,25 @@ Unix users and groups.")
"Convert ranges of Unicode codepoints to UTF-8 byte ranges.")
(license (list license:expat license:unlicense))))
(define-public rust-utf8parse-0.1
(package
(name "rust-utf8parse")
(version "0.1.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "utf8parse" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"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.7
(package
(name "rust-uuid")