diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2025-05-13 16:34:54 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2025-05-13 17:01:01 +0200 |
commit | e2b41eb747c983b3141488e583ec7c7bec9300ce (patch) | |
tree | a2e70b539cd51c47ad2527637e5320d6900f907b | |
parent | 1e2eecfa4b5f987490bf5677505b04f071847848 (diff) |
gnu: Add r-rmio.
* gnu/packages/cran.scm (r-rmio): New variable.
Change-Id: I6d43d59449d2d483d13fed0cdd14df2effb5e46d
-rw-r--r-- | gnu/packages/cran.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index d15c0ae192..a9a258e02b 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -16010,6 +16010,27 @@ functionality of R Markdown templates (e.g., count words or post-process citations).") (license license:expat))) +(define-public r-rmio + (package + (name "r-rmio") + (version "0.4.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "rmio" version)) + (sha256 + (base32 "1gkd8nkqyfpkp6nvqb7c698difak5ymih3vy6njzqd3gwdp09mhy")))) + (properties `((upstream-name . "rmio"))) + (build-system r-build-system) + (propagated-inputs (list r-bigassertr r-ff)) + (native-inputs (list r-testthat)) + (home-page "https://github.com/privefl/rmio") + (synopsis "Provides mio C++11 header files for R") + (description + "This package provides the header files of mio, a cross-platform C++11 +header-only library for memory mapped file IO.") + (license license:gpl3))) + (define-public r-rmtstat (package (name "r-rmtstat") |