mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-03 00:26:33 +01:00
gnu: Add rust-arraydeque-0.5.
* gnu/packages/crates-io.scm (rust-arraydeque-0.5): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
3a21e8a1f7
commit
edbf2070bf
1 changed files with 20 additions and 0 deletions
|
@ -3129,6 +3129,26 @@ (define-public rust-array-ops-0.1
|
||||||
structures.")
|
structures.")
|
||||||
(license license:mpl2.0)))
|
(license license:mpl2.0)))
|
||||||
|
|
||||||
|
(define-public rust-arraydeque-0.5
|
||||||
|
(package
|
||||||
|
(name "rust-arraydeque")
|
||||||
|
(version "0.5.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "arraydeque" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0dn2xdfg3rkiqsh8a6achnmvf5nf11xk33xgjzpksliab4yjx43x"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(home-page "https://github.com/andylokandy/arraydeque")
|
||||||
|
(synopsis
|
||||||
|
"Ring buffer with a fixed capacity, which can be stored on the stack")
|
||||||
|
(description
|
||||||
|
"This package provides a ring buffer with a fixed capacity, which can be stored
|
||||||
|
on the stack.")
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-arrayref-0.3
|
(define-public rust-arrayref-0.3
|
||||||
(package
|
(package
|
||||||
(name "rust-arrayref")
|
(name "rust-arrayref")
|
||||||
|
|
Loading…
Reference in a new issue