mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add rust-ringbuf-0.2.
* gnu/packages/crates-io.scm (rust-ringbuf-0.2): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Change-Id: I559d629733f14adaddd0dd2eac10eb8a1ec5f9f9
This commit is contained in:
parent
4d68caa26c
commit
ad73edfc0a
1 changed files with 22 additions and 0 deletions
|
@ -57840,6 +57840,28 @@ (define-public rust-ring-0.13
|
|||
(lambda _
|
||||
(invoke "python" "make_curve25519_tables.py")))))))))))
|
||||
|
||||
(define-public rust-ringbuf-0.2
|
||||
(package
|
||||
(name "rust-ringbuf")
|
||||
(version "0.2.6")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "ringbuf" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1wxd2sb5b0kjwc5mcv8qrmzl0spfs0agznrxain3xhrr769g6q3c"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
(list #: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 @acronym{SPSC, Single Producer Single Consumer} @acronym{FIFO,
|
||||
First In First Out} ring buffer with direct access to inner data.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-ripemd-0.1
|
||||
(package
|
||||
(name "rust-ripemd")
|
||||
|
|
Loading…
Reference in a new issue