gnu: Add rust-unicase.

* gnu/packages/crates-io.scm (rust-unicase): New variable.
master
Efraim Flashner 2019-08-29 12:10:18 +03:00
parent caf6a690ea
commit ff90132810
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 22 additions and 0 deletions

View File

@ -1802,6 +1802,28 @@ with the Unicode character database.")
(license (list license:asl2.0
license:expat))))
(define-public rust-unicase
(package
(name "rust-unicase")
(version "2.4.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "unicase" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1xmpmkakhhblq7dzab1kwyv925kv7fqjkjsxjspg6ix9n88makm8"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-version-check" ,rust-version-check-0.1))))
(home-page "https://github.com/seanmonstar/unicase")
(synopsis "Case-insensitive wrapper around strings")
(description
"A case-insensitive wrapper around strings.")
(license (list license:asl2.0
license:expat))))
(define-public rust-unicode-width
(package
(name "rust-unicode-width")