3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add rust-recycler-0.1.

* gnu/packages/crates-io.scm (rust-recycler-0.1): New variable.
This commit is contained in:
Efraim Flashner 2020-03-19 11:47:12 +02:00
parent 5f29a63f10
commit 5df9352864
Signed by untrusted user: efraim
GPG key ID: 41AAE7DCCA3D8351

View file

@ -14640,6 +14640,27 @@ accessors.")
@code{rdrand} and @code{rdseed} instructions")
(license license:isc)))
(define-public rust-recycler-0.1
(package
(name "rust-recycler")
(version "0.1.4")
(source
(origin
(method url-fetch)
(uri (crate-uri "recycler" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"1yll0sqswy6afk9ik7r22djqafa3wfgvgdzqqh7jbczyiqr2gp4q"))))
(build-system cargo-build-system)
(home-page "https://github.com/frankmcsherry/recycler")
(synopsis "Rust library for recycling types containing owned memory")
(description
"This package provides a small Rust library for recycling types containing
owned memory.")
(license license:expat)))
;; This package requires features which are unavailable
;; on the stable releases of Rust.
(define-public rust-redox-syscall-0.1