mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-04 18:38:57 -05:00
gnu: Add rust-unicode-reverse-1.
* gnu/packages/crates-io.scm (rust-unicode-reverse-1): New variable. Change-Id: I224132897c4298b6d4c628e0541611fe22efce44
This commit is contained in:
parent
1ed93a3714
commit
31116cae6d
1 changed files with 20 additions and 0 deletions
|
@ -78202,6 +78202,26 @@ (define-public rust-unicode-normalization-0.1
|
|||
described in Unicode Standard Annex #15.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-unicode-reverse-1
|
||||
(package
|
||||
(name "rust-unicode-reverse")
|
||||
(version "1.0.8")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "unicode-reverse" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "0b4n480vd897pm4klmmz07w8p45kb5ds0037kakd1lmhxfn5vshb"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs (("rust-unicode-segmentation" ,rust-unicode-segmentation-1))
|
||||
#:cargo-development-inputs (("rust-quickcheck" ,rust-quickcheck-0.4))))
|
||||
(home-page "https://github.com/mbrubeck/unicode-reverse")
|
||||
(synopsis "Unicode-aware in-place string reversal")
|
||||
(description "Unicode-aware in-place string reversal.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-unicode-segmentation-1
|
||||
(package
|
||||
(name "rust-unicode-segmentation")
|
||||
|
|
Loading…
Reference in a new issue