gnu: Add rust-fucshia-zircon.

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

View File

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