mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-21 09:37:03 +01:00
gnu: Add rust-unicode-categories-0.1.
* gnu/packages/crates-io.scm (rust-unicode-categories-0.1): New variables. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
This commit is contained in:
parent
54f11f47b5
commit
80fcc42f5b
1 changed files with 19 additions and 0 deletions
|
@ -63342,6 +63342,25 @@ (define-public rust-unicode-bidi-0.3
|
|||
"Implementation of the Unicode Bidirectional Algorithm.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-unicode-categories-0.1
|
||||
(package
|
||||
(name "rust-unicode-categories")
|
||||
(version "0.1.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "unicode-categories" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0kp1d7fryxxm7hqywbk88yb9d1avsam9sg76xh36k5qx2arj9v1r"))))
|
||||
(build-system cargo-build-system)
|
||||
(home-page "https://github.com/swgillespie/unicode-categories")
|
||||
(synopsis "Query Unicode category membership")
|
||||
(description
|
||||
"This package provides a package for querying Unicode category
|
||||
membership for characters in Rust.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-unicode-ident-1
|
||||
(package
|
||||
(name "rust-unicode-ident")
|
||||
|
|
Loading…
Reference in a new issue