gnu: Add rust-void.

* gnu/packages/crates-io.scm (rust-void): New variable.
master
Efraim Flashner 2019-08-28 16:50:48 +03:00
parent 8aa60ffe8d
commit af72ed1696
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 19 additions and 0 deletions

View File

@ -1876,6 +1876,25 @@ If that fails, no determination is made, and calls return None.")
(license (list license:asl2.0
license:expat))))
(define-public rust-void
(package
(name "rust-void")
(version "1.0.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "void" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0zc8f0ksxvmhvgx4fdg0zyn6vdnbxd2xv9hfx4nhzg6kbs4f80ka"))))
(build-system cargo-build-system)
(home-page "https://github.com/reem/rust-void.git")
(synopsis "Void type for use in statically impossible cases")
(description
"The uninhabited void type for use in statically impossible cases.")
(license license:expat)))
(define-public rust-wasi
(package
(name "rust-wasi")