mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-14 19:05:10 -05:00
gnu: Add rust-utf8-ranges-1.0.
* gnu/packages/crates-io.scm (rust-utf8-ranges-1.0): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
b96b4d3e26
commit
0533bf006d
1 changed files with 26 additions and 0 deletions
|
@ -5076,6 +5076,32 @@ (define-public rust-untrusted-0.7
|
|||
(properties '((hidden? . #t)))
|
||||
(license license:isc)))
|
||||
|
||||
(define-public rust-utf8-ranges-1.0
|
||||
(package
|
||||
(name "rust-utf8-ranges")
|
||||
(version "1.0.3")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "utf8-ranges" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1ppzjsxmv1p1xfid8wwn07ciikk84k30frl28bwsny6za1vall4x"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-development-inputs
|
||||
(("rust-doc-comment" ,rust-doc-comment-0.3)
|
||||
("rust-quickcheck" ,rust-quickcheck-0.8))))
|
||||
(home-page "https://github.com/BurntSushi/utf8-ranges")
|
||||
(synopsis
|
||||
"Convert ranges of Unicode codepoints to UTF-8 byte ranges")
|
||||
(description
|
||||
"Convert ranges of Unicode codepoints to UTF-8 byte ranges.")
|
||||
(license (list license:expat license:unlicense))))
|
||||
|
||||
(define-public rust-vcpkg-0.2
|
||||
(package
|
||||
(name "rust-vcpkg")
|
||||
|
|
Loading…
Reference in a new issue