guix-commits
[Top][All Lists]
Advanced

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

06/07: gnu: Add r-collections.


From: guix-commits
Subject: 06/07: gnu: Add r-collections.
Date: Tue, 22 Feb 2022 13:33:21 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit fac2e1a110ed4b8cbbb74cd4cea476347ec7e44c
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue Feb 22 19:06:44 2022 +0100

    gnu: Add r-collections.
    
    * gnu/packages/cran.scm (r-collections): New variable.
---
 gnu/packages/cran.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 1ac9e4b033..b316a3c05f 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -156,6 +156,25 @@ can limit either their total size or the age of the oldest 
object (or both),
 automatically pruning objects to maintain the constraints.")
     (license license:expat)))
 
+(define-public r-collections
+  (package
+    (name "r-collections")
+    (version "0.3.5")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "collections" version))
+       (sha256
+        (base32 "053ig88pva78wxxwya3v7cz853k563dkpgxrf2xvd0l0d9fanxmz"))))
+    (properties `((upstream-name . "collections")))
+    (build-system r-build-system)
+    (home-page "https://github.com/randy3k/collections";)
+    (synopsis "High performance container data types")
+    (description
+     "This package provides high performance container data types such as
+queues, stacks, deques, dicts and ordered dicts.")
+    (license license:expat)))
+
 (define-public r-curry
   (package
     (name "r-curry")



reply via email to

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