gnu: Add rust-futf-0.1.

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

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
John Soo 2019-12-20 08:29:02 -08:00 committed by Efraim Flashner
parent 215545b7d4
commit f76bbcb6e3
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -3225,6 +3225,30 @@ (define-public rust-fuchsia-zircon-sys-0.3
(properties '((hidden? . #t)))
(license license:bsd-3)))
(define-public rust-futf-0.1
(package
(name "rust-futf")
(version "0.1.4")
(source
(origin
(method url-fetch)
(uri (crate-uri "futf" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"0fxc18bnabird5jl941nsd6d25vq8cn8barmz4d30dlkzbiir73w"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-mac" ,rust-mac-0.1)
("rust-new-debug-unreachable" ,rust-new-debug-unreachable-1.0))))
(home-page "https://github.com/servo/futf")
(synopsis "Handling fragments of UTF-8")
(description "Handling fragments of UTF-8.")
(license (list license:asl2.0 license:expat))))
(define-public rust-futures-0.1
(package
(name "rust-futures")