mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-05 10:56:56 -05:00
gnu: Add rust-unicode-bidi-0.3.
* gnu/packages/crates-io.scm (rust-unicode-bidi-0.3): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
8fed953a5d
commit
5cc1677649
1 changed files with 29 additions and 0 deletions
|
@ -8402,6 +8402,35 @@ (define-public rust-unicase-2.4
|
|||
(license (list license:asl2.0
|
||||
license:expat))))
|
||||
|
||||
(define-public rust-unicode-bidi-0.3
|
||||
(package
|
||||
(name "rust-unicode-bidi")
|
||||
(version "0.3.4")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "unicode-bidi" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1malx8ljgm7v1gbaazkn7iicy5wj0bwcyadj3l727a38ch6bvwj9"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-flame" ,rust-flame-0.2)
|
||||
("rust-flamer" ,rust-flamer-0.3)
|
||||
("rust-matches" ,rust-matches-0.1)
|
||||
("rust-serde" ,rust-serde-1.0))
|
||||
#:cargo-development-inputs
|
||||
(("rust-serde-test" ,rust-serde-test-1.0))))
|
||||
(home-page "https://github.com/servo/unicode-bidi")
|
||||
(synopsis "Implementation of the Unicode Bidirectional Algorithm")
|
||||
(description
|
||||
"Implementation of the Unicode Bidirectional Algorithm.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-unicode-width-0.1
|
||||
(package
|
||||
(name "rust-unicode-width")
|
||||
|
|
Loading…
Reference in a new issue