me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-crossbeam-epoch-0.7.

* gnu/packages/crates-io.scm (rust-crossbeam-epoch-0.7): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
master
John Soo 2019-12-14 13:06:38 -08:00 committed by Efraim Flashner
parent c2f1c56a8e
commit 9217494fb9
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 31 additions and 0 deletions

View File

@ -788,6 +788,37 @@ It is inspired by the Linux kernel's @code{crypto_memneq}.")
(description "Criterion's plotting library.")
(license (list license:expat license:asl2.0))))
(define-public rust-crossbeam-epoch-0.7
(package
(name "rust-crossbeam-epoch")
(version "0.7.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "crossbeam-epoch" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"1d408b9x82mdbnb405gw58v5mmdbj2rl28a1h7b9rmn25h8f7j84"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-arrayvec" ,rust-arrayvec-0.4)
("rust-cfg-if" ,rust-cfg-if-0.1)
("rust-crossbeam-utils" ,rust-crossbeam-utils-0.6)
("rust-lazy-static" ,rust-lazy-static-1.3)
("rust-memoffset" ,rust-memoffset-0.2)
("rust-scopeguard" ,rust-scopeguard-0.3))
#:cargo-development-inputs
(("rust-rand" ,rust-rand-0.4))))
(home-page
"https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-epoch")
(synopsis "Epoch-based garbage collection")
(description "Epoch-based garbage collection.")
(license (list license:expat license:asl2.0))))
(define-public rust-crossbeam-utils-0.6
(package
(name "rust-crossbeam-utils")