about summary refs log tree commit diff
path: root/gn
diff options
context:
space:
mode:
Diffstat (limited to 'gn')
-rw-r--r--gn/packages/statistics.scm23
1 files changed, 23 insertions, 0 deletions
diff --git a/gn/packages/statistics.scm b/gn/packages/statistics.scm
index c7cce66..8e8483a 100644
--- a/gn/packages/statistics.scm
+++ b/gn/packages/statistics.scm
@@ -257,3 +257,26 @@ interaction networks.")
                 (("^license-files = .*$")
                  "license = {file = \"LICENSE\"}\n"))))
           (delete 'check))))))
+
+
+(define-public r-thor
+  (package
+    (name "r-thor")
+    (version "1.2.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "thor" version))
+       (sha256
+        (base32 "1g9204n6khm1k9ifwlmhbycfp996k5c2zpcmk2aqd95iqafpaw4g"))))
+    (build-system r-build-system)
+    (propagated-inputs `(("r-r6" ,r-r6)
+                         ("r-storr" ,r-storr)))
+    (native-inputs (list r-testthat r-knitr))
+    (home-page "https://github.com/richfitz/thor")
+    (synopsis "R binding for the ‘Lightning’ database (LMDB) ")
+    (description
+     "This package is an  R interface to LMDB.
+ LMDB is an embedded transactional key-value store and this package provides R mappings to it.
+ It wraps the entire LMDB interface, except for support for duplicated keys.")
+    (license license:openldap2.8)))