efraim pushed a commit to branch master
in repository guix.
commit 5df93528644ff955b15d8e5c1d311aa9f2f733b3
Author: Efraim Flashner <[email protected]>
AuthorDate: Thu Mar 19 11:47:12 2020 +0200
gnu: Add rust-recycler-0.1.
* gnu/packages/crates-io.scm (rust-recycler-0.1): New variable.
---
gnu/packages/crates-io.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 193a203..9083f45 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -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