diff options
author | msglm <msglm@techchud.xyz> | 2025-02-09 19:47:11 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-02-09 19:47:11 -0600 |
commit | 164a2d4ecf1a6314875c8b39c796361102836dcb (patch) | |
tree | 166ec2009446d8efc4a614d17ed41444334419b1 | |
parent | 80bcbe010bb1bcbd461ab151f01f9e7df9ebebc6 (diff) | |
download | guix-msglm-164a2d4ecf1a6314875c8b39c796361102836dcb.tar.gz guix-msglm-164a2d4ecf1a6314875c8b39c796361102836dcb.tar.bz2 guix-msglm-164a2d4ecf1a6314875c8b39c796361102836dcb.zip |
add rust-crossbeam@0.2
-rw-r--r-- | unlustig.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index 2fd701a..8c359c3 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -2149,3 +2149,22 @@ See winapi for types and constants.") (description "This package provides Proc macro for ouroboros crate.") (license (list license:expat license:asl2.0)))) +(define-public rust-crossbeam-0.2 + (package + (name "rust-crossbeam") + (version "0.2.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "crossbeam" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1gmrayc93lygb8v62bj0c5zwyflvj5bli7ari650k259nlyncrmx")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-development-inputs (("rust-rand" ,rust-rand-0.3)))) + (home-page "https://github.com/crossbeam-rs/crossbeam") + (synopsis "Tools for concurrent programming") + (description "This package provides tools for concurrent programming.") + (license (list license:asl2.0 license:expat)))) + |