mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add rust-unicode-linebreak-0.1.
* gnu/packages/crates-io.scm (rust-unicode-linebreak-0.1): New variable.
This commit is contained in:
parent
99252c6d68
commit
c11aac2e1e
1 changed files with 21 additions and 0 deletions
|
@ -67537,6 +67537,27 @@ (define-public rust-unicode-categories-0.1
|
|||
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")
|
||||
|
|
Loading…
Reference in a new issue