me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-ucd-parse-0.1.

* gnu/packages/crates-io.scm (rust-ucd-parse-0.1): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
John Soo 2019-12-19 09:28:43 -08:00 committed by Efraim Flashner
parent 0f192fe602
commit 1f53105e8c
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 26 additions and 0 deletions

View File

@ -9521,6 +9521,32 @@ implementation is incomplete.")
(license (list license:asl2.0
license:expat))))
(define-public rust-ucd-parse-0.1
(package
(name "rust-ucd-parse")
(version "0.1.3")
(source
(origin
(method url-fetch)
(uri (crate-uri "ucd-parse" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"13mq6c85r6ak10gjlq74mzdhsi0g0vps2y73by420513gfnipm97"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-lazy-static" ,rust-lazy-static-1.3)
("rust-regex" ,rust-regex-1.1))))
(home-page "https://github.com/BurntSushi/ucd-generate")
(synopsis "Parse data files in the Unicode character database")
(description
"This package provides a library for parsing data files in the
Unicode character database.")
(license (list license:asl2.0 license:expat))))
(define-public rust-ucd-trie-0.1
(package
(name "rust-ucd-trie")