diff options
author | Valentin Ignatev <valentignatev@gmail.com> | 2020-01-15 03:14:52 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-02-09 11:07:01 +0200 |
commit | 5ea15d03e5e0d6f252349b0f06ca53090bfac5a7 (patch) | |
tree | 04f4f5a76940501e90cf4b4848a69e443fdaaa1e | |
parent | 97fb5b53fde63bcc22180ecb274a329684b6d528 (diff) | |
download | patches-5ea15d03e5e0d6f252349b0f06ca53090bfac5a7.tar patches-5ea15d03e5e0d6f252349b0f06ca53090bfac5a7.tar.gz |
gnu: Add rust-utf8parse-0.1.
* gnu/packages/crates-io.scm (rust-utf8parse-0.1): New variable.
-rw-r--r-- | gnu/packages/crates-io.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index f63438118e..63384ded0d 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -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") |