diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2026-02-16 17:02:19 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-03-07 11:57:21 +0100 |
| commit | 868c846d04055b5a9d217a30734a49f3ce5eeed3 (patch) | |
| tree | cfdcb6c21d526d783e0c65594d7a34f1aab1d090 | |
| parent | 011833206961ff057de7b64475074a10a6262129 (diff) | |
gnu: r-roxygen2: Move to (gnu packages cran).
* gnu/packages/statistics.scm (r-roxygen2): Move from here...
* gnu/packages/cran.scm (r-roxygen2): ...to here.
Change-Id: I012394d29596b2f76fd48b3b1894e317b806e3f5
| -rw-r--r-- | gnu/packages/cran.scm | 41 | ||||
| -rw-r--r-- | gnu/packages/statistics.scm | 41 |
2 files changed, 41 insertions, 41 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 655f0ea883b..35488770f12 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -7282,6 +7282,47 @@ based on their size or the date of the last backup; inspired by the utility @code{logrotate}'.") (license license:expat))) +(define-public r-roxygen2 + (package + (name "r-roxygen2") + (version "7.3.3") + (source (origin + (method url-fetch) + (uri (cran-uri "roxygen2" version)) + (sha256 + (base32 + "0jk1b71j7r61kmfa7028yybfyw3wjjka2hidlh6n3vdbw8z6whfs")))) + (build-system r-build-system) + (propagated-inputs + (list r-brew + r-cli + r-commonmark + r-cpp11 + r-desc + r-knitr + r-pkgload + r-purrr + r-r6 + r-rlang + r-stringi + r-stringr + r-withr + r-xml2)) + (native-inputs + (list r-digest + r-knitr + r-magrittr + r-r-methodss3 + r-r-oo + r-rmarkdown + r-testthat)) + (home-page "https://github.com/klutometis/roxygen") + (synopsis "In-source documentation system for R") + (description + "Roxygen2 is a Doxygen-like in-source documentation system for Rd, +collation, and NAMESPACE files.") + (license license:gpl2+))) + (define-public r-rpart (package (name "r-rpart") diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index a8c3ad1ec07..0238417f1b7 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -1681,47 +1681,6 @@ the versions that @code{r-release} and @code{r-oldrel} refer to, and also all previous R versions and their release dates.") (license license:expat))) -(define-public r-roxygen2 - (package - (name "r-roxygen2") - (version "7.3.3") - (source (origin - (method url-fetch) - (uri (cran-uri "roxygen2" version)) - (sha256 - (base32 - "0jk1b71j7r61kmfa7028yybfyw3wjjka2hidlh6n3vdbw8z6whfs")))) - (build-system r-build-system) - (propagated-inputs - (list r-brew - r-cli - r-commonmark - r-cpp11 - r-desc - r-knitr - r-pkgload - r-purrr - r-r6 - r-rlang - r-stringi - r-stringr - r-withr - r-xml2)) - (native-inputs - (list r-digest - r-knitr - r-magrittr - r-r-methodss3 - r-r-oo - r-rmarkdown - r-testthat)) - (home-page "https://github.com/klutometis/roxygen") - (synopsis "In-source documentation system for R") - (description - "Roxygen2 is a Doxygen-like in-source documentation system for Rd, -collation, and NAMESPACE files.") - (license license:gpl2+))) - (define-public r-rstudioapi (package (name "r-rstudioapi") |
