diff options
author | Herman Rimm <herman@rimm.ee> | 2024-02-18 22:02:25 +0100 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-07-19 00:40:51 +0300 |
commit | f085ce32bb31597bb2e15c7a84e2d02c8d7b5710 (patch) | |
tree | 5663a878bec8d5bd9f9c5dc42ece1999624f4108 | |
parent | 95f6251880019b883b98442878b94560dac5f3f0 (diff) | |
download | guix-f085ce32bb31597bb2e15c7a84e2d02c8d7b5710.tar.gz guix-f085ce32bb31597bb2e15c7a84e2d02c8d7b5710.zip |
gnu: Add rust-rclite-0.2.
* gnu/packages/crates-io.scm (rust-rclite-0.2): Add variable.
Change-Id: I5e058f07ceff79965473f27f3a22aa98cb0151a3
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
-rw-r--r-- | gnu/packages/crates-io.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index c838e44f83..3d0587fb5e 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -54023,6 +54023,29 @@ Rust.") (description "This package provides core APIs for Rayon.") (license (list license:asl2.0 license:expat)))) +(define-public rust-rclite-0.2 + (package + (name "rust-rclite") + (version "0.2.4") + (source + (origin + (method url-fetch) + (uri (crate-uri "rclite" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1fa379adiwincgywigi341zd969d3459ljq71n5ymwwficp0r7zf")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-branches" ,rust-branches-0.1)) + #:cargo-development-inputs (("rust-criterion" ,rust-criterion-0.4) + ("rust-rayon" ,rust-rayon-1)))) + (home-page "https://github.com/fereidani/rclite") + (synopsis "Reference counting compatible with Arc and Rc APIs") + (description + "This package provides reference counting, which is compatible with +Arc and Rc APIs.") + (license (list license:expat license:asl2.0)))) + (define-public rust-rctree-0.5 (package (name "rust-rctree") |