gnu: Add rust-fuchsia-zircon-sys.

* gnu/packages/crates-io.scm (rust-fuchsia-zircon-sys): New variable.
master
Efraim Flashner 2019-08-29 14:24:33 +03:00
parent eb34db03ee
commit cde49404ce
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 20 additions and 0 deletions

View File

@ -509,6 +509,26 @@ implementation that is more efficient for smaller hash keys.")
process and much more.")
(license license:expat)))
(define-public rust-fuchsia-zircon-sys
(package
(name "rust-fuchsia-zircon-sys")
(version "0.3.3")
(source
(origin
(method url-fetch)
(uri (crate-uri "fuchsia-zircon-sys" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"19zp2085qsyq2bh1gvcxq1lb8w6v6jj9kbdkhpdjrl95fypakjix"))))
(build-system cargo-build-system)
(arguments
`(#:tests? #f)) ; tests require zircon
(home-page "https://fuchsia.googlesource.com/garnet/")
(synopsis "Low-level Rust bindings for the Zircon kernel")
(description "Low-level Rust bindings for the Zircon kernel.")
(license license:bsd-3)))
(define-public rust-futures
(package
(name "rust-futures")