1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-29 05:30:32 +02:00

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
This commit is contained in:
Ricardo Wurmus
2026-02-16 16:51:32 +01:00
committed by Andreas Enge
parent 98ef04b635
commit 7f92fbe75c
2 changed files with 24 additions and 24 deletions

View File

@@ -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")

View File

@@ -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")