guix_mirror_bot pushed a commit to branch r-team
in repository guix.
commit 1863c9df80f1399e8bb0efb18d4df46fca5ed033
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 16:51:32 2026 +0100
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
---
gnu/packages/cran.scm | 24 ++++++++++++++++++++++++
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 f17837250a..4bbddac2de 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -6923,6 +6923,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 5a0aaaed0e..deb12f244c 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")