diff options
author | Alexander_Kabui | 2025-09-05 10:06:45 +0300 |
---|---|---|
committer | Munyoki Kilyungi | 2025-09-05 10:19:11 +0300 |
commit | dea992c4fdbefcdf47fb3faf1575afa86e8f361c (patch) | |
tree | f1cdc02bd90284bdc7f287423f8332eadafc6427 | |
parent | 80a0ef45bc8c048b4baa6055136307bd1816a190 (diff) | |
download | guix-bioinformatics-dea992c4fdbefcdf47fb3faf1575afa86e8f361c.tar.gz |
gn: Add r-thor.
* gn/packages/statistics.scm (r-thor): New variable. Reviewed-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
-rw-r--r-- | gn/packages/statistics.scm | 23 |
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))) |