diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2022-04-03 10:38:08 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2022-04-03 14:07:46 +0300 |
commit | c11aac2e1e31e806c461131090a839a673e9cf8e (patch) | |
tree | 31d6c59936fa372c0edf83ed1f6a453bddaf280e /gnu/packages | |
parent | 99252c6d6855cbe3beb25bed0791c09ba357e483 (diff) | |
download | guix-c11aac2e1e31e806c461131090a839a673e9cf8e.tar.gz |
gnu: Add rust-unicode-linebreak-0.1.
* gnu/packages/crates-io.scm (rust-unicode-linebreak-0.1): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/crates-io.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 8b80ba5dce..a27280d1f3 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -67537,6 +67537,27 @@ char type that allow for the querying if whether or not a character is a member of a certain category of Unicode characters.") (license (list license:expat license:asl2.0)))) +(define-public rust-unicode-linebreak-0.1 + (package + (name "rust-unicode-linebreak") + (version "0.1.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "unicode-linebreak" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0grq6bsn967q4vpifld53s7a140nlmpq5vy8ghgr73f4n2mdqlis")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-regex" ,rust-regex-1)))) + (home-page "https://github.com/axelf4/unicode-linebreak") + (synopsis "Implementation of the Unicode Line Breaking Algorithm") + (description "This package provides an Implementation of the Unicode Line +Breaking Algorithm in Rust.") + (license license:asl2.0))) + (define-public rust-unicode-normalization-0.1 (package (name "rust-unicode-normalization") |