guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

90/409: gnu: Add rust-arraydeque-0.5.


From: guix-commits
Subject: 90/409: gnu: Add rust-arraydeque-0.5.
Date: Thu, 19 Dec 2024 02:21:51 -0500 (EST)

efraim pushed a commit to branch rust-team
in repository guix.

commit 5e8a84c95eae554efa811e46e0c8402b835d1072
Author: Jordan Moore <lockbox@struct.foo>
AuthorDate: Mon Dec 2 22:00:09 2024 -0500

    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>
---
 gnu/packages/crates-io.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 512833cd1c..297a854493 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -3129,6 +3129,26 @@ implementations for most of the standard library's 
methods on array like data
 structures.")
     (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
   (package
     (name "rust-arrayref")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]