diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2026-02-16 16:51:32 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-03-07 11:57:20 +0100 |
| commit | 7f92fbe75c0a3a5cf8c4030467e90bc44e55e2f7 (patch) | |
| tree | 68f19706cd255f0a6f87c219385bab65de6aa8c8 /gnu/packages | |
| parent | 98ef04b6352b8aa5bcbfe7cccb5eebf0bb48a2ae (diff) | |
gnu: r-rlang: Move to (gnu packages cran).
* gnu/packages/statistics.scm (r-rlang): Move from here...
* gnu/packages/cran.scm (r-rlang): ...to here.
Change-Id: Ib6a057009a73e8cdca98501ce3f7c9dce2d14a03
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/cran.scm | 24 | ||||
| -rw-r--r-- | gnu/packages/statistics.scm | 24 |
2 files changed, 24 insertions, 24 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 42f2cb94b59..72f3c07bb0e 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -6970,6 +6970,30 @@ character vector.") using just two functions: melt and dcast (or acast).") (license license:expat))) +(define-public r-rlang + (package + (name "r-rlang") + (version "1.1.7") + (source (origin + (method url-fetch) + (uri (cran-uri "rlang" version)) + (sha256 + (base32 + "0wz3kd0d3iy0mkywmxipxx6qfsnk2w3c6cca6r553lxcxbkr2g0j")))) + (properties + ;; We can't have r-testthat among the inputs here to avoid a dependency + ;; cycle. + '((updater-ignored-native-inputs . ("r-testthat")))) + (build-system r-build-system) + ;; Tests require r-testthat, which indirectly depends on this package. + (arguments (list #:tests? #false)) + (home-page "http://rlang.tidyverse.org") + (synopsis "Functions for base types, core R and Tidyverse features") + (description "This package provides a toolbox for working with base types, +core R features like the condition system, and core @code{Tidyverse} features +like tidy evaluation.") + (license license:gpl3))) + (define-public r-robslopes (package (name "r-robslopes") diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index e84e185929b..a22ee6e5c26 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -922,30 +922,6 @@ posteriors and evidences.") flexible and easy to set up.") (license license:expat))) -(define-public r-rlang - (package - (name "r-rlang") - (version "1.1.7") - (source (origin - (method url-fetch) - (uri (cran-uri "rlang" version)) - (sha256 - (base32 - "0wz3kd0d3iy0mkywmxipxx6qfsnk2w3c6cca6r553lxcxbkr2g0j")))) - (properties - ;; We can't have r-testthat among the inputs here to avoid a dependency - ;; cycle. - '((updater-ignored-native-inputs . ("r-testthat")))) - (build-system r-build-system) - ;; Tests require r-testthat, which indirectly depends on this package. - (arguments (list #:tests? #false)) - (home-page "http://rlang.tidyverse.org") - (synopsis "Functions for base types, core R and Tidyverse features") - (description "This package provides a toolbox for working with base types, -core R features like the condition system, and core @code{Tidyverse} features -like tidy evaluation.") - (license license:gpl3))) - (define-public r-tibble (package (name "r-tibble") |
