Skip to content
Snippets Groups Projects
Unverified Commit 2f19d329 authored by Efraim Flashner's avatar Efraim Flashner
Browse files

gnu: Add rust-ucd-trie.

* gnu/packages/crates-io.scm (rust-ucd-trie): New variable.
parent ce71b229
No related branches found
No related tags found
No related merge requests found
......@@ -1727,6 +1727,29 @@ (define-public rust-typenum
(license (list license:asl2.0
license:expat))))
(define-public rust-ucd-trie
(package
(name "rust-ucd-trie")
(version "0.1.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "ucd-trie" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1hh6kyzh5xygwy96wfmsf8v8czlzhps2lgbcyhj1xzy1w1xys04g"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-development-inputs
(("rust-lazy-static" ,rust-lazy-static))))
(home-page "https://github.com/BurntSushi/ucd-generate")
(synopsis "Trie for storing Unicode codepoint sets and maps")
(description
"This package provides a trie for storing Unicode codepoint sets and maps.")
(license (list license:asl2.0
license:expat))))
(define-public rust-ucd-util
(package
(name "rust-ucd-util")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment