mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-28 14:01:29 -05:00
gnu: Add rust-recycler-0.1.
* gnu/packages/crates-io.scm (rust-recycler-0.1): New variable.
This commit is contained in:
parent
5f29a63f10
commit
5df9352864
1 changed files with 21 additions and 0 deletions
|
@ -14640,6 +14640,27 @@ (define-public rust-rdrand-0.4
|
|||
@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
|
||||
|
|
Loading…
Reference in a new issue