diff options
author | Chloe Brown <chloe.brown.00@outlook.com> | 2022-07-14 17:57:22 +0100 |
---|---|---|
committer | Chloe Brown <chloe.brown.00@outlook.com> | 2022-07-14 17:57:22 +0100 |
commit | 030ffd286caf26fe9d22abfafe30e7a8812d22f5 (patch) | |
tree | bd65a8cc7e532cc4bc6b23c1c84c84b5357e7d4d | |
parent | 0829c2c628a845b7679a8c6927817dfa2a4bc233 (diff) |
refactor: move ringbuf-0.2
-rw-r--r-- | yellowsquid/packages/crates-io.scm | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/yellowsquid/packages/crates-io.scm b/yellowsquid/packages/crates-io.scm index f37457d..abf0de9 100644 --- a/yellowsquid/packages/crates-io.scm +++ b/yellowsquid/packages/crates-io.scm @@ -4200,6 +4200,27 @@ premade types for common use cases.") "An implementation detail of rental. Should not be used directly.") (license (list license:expat license:asl2.0)))) +(define-public rust-ringbuf-0.2 + (package + (name "rust-ringbuf") + (version "0.2.8") + (source (origin + (method url-fetch) + (uri (crate-uri "ringbuf" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "18n2qmbvvxj9s775p6q2dv5s68ndbpvb7fr3mx5fg2gpa26z2npn")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-cache-padded" ,rust-cache-padded-1)))) + (home-page "https://github.com/agerasev/ringbuf") + (synopsis + "Lock-free SPSC FIFO ring buffer with direct access to inner data") + (description + "Lock-free SPSC FIFO ring buffer with direct access to inner data") + (license (list license:expat license:asl2.0)))) + (define-public rust-rodio-0.13 (package (name "rust-rodio") @@ -4359,27 +4380,6 @@ premade types for common use cases.") (license (list license:asl2.0 license:isc license:expat)))) -(define-public rust-ringbuf-0.2 - (package - (name "rust-ringbuf") - (version "0.2.8") - (source (origin - (method url-fetch) - (uri (crate-uri "ringbuf" version)) - (file-name (string-append name "-" version ".tar.gz")) - (sha256 - (base32 - "18n2qmbvvxj9s775p6q2dv5s68ndbpvb7fr3mx5fg2gpa26z2npn")))) - (build-system cargo-build-system) - (arguments - `(#:cargo-inputs (("rust-cache-padded" ,rust-cache-padded-1)))) - (home-page "https://github.com/agerasev/ringbuf") - (synopsis - "Lock-free SPSC FIFO ring buffer with direct access to inner data") - (description - "Lock-free SPSC FIFO ring buffer with direct access to inner data") - (license (list license:expat license:asl2.0)))) - (define-public rust-sct-0.7 (package (name "rust-sct") |