summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2026-02-16 18:50:06 +0100
committerAndreas Enge <andreas@enge.fr>2026-03-07 11:57:23 +0100
commit2283d0f242530050f326d792c80579b7225beb30 (patch)
tree03617e1fc9bd2b777cd1b3c3b491a4f1449fbf5c /gnu
parent8662f4fbca1f082e1250ac3b8bb1bc7259ebcc67 (diff)
gnu: r-tidyselect: Move to (gnu packages cran).
* gnu/packages/statistics.scm (r-tidyselect): Move from here... * gnu/packages/cran.scm (r-tidyselect): ...to here. Change-Id: I4c38afa9a6bb029c2fdd6bd142d8a9e0c5d881f8
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/cran.scm27
-rw-r--r--gnu/packages/statistics.scm27
2 files changed, 27 insertions, 27 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 53ec8682726..4b18b38e8fb 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -13034,6 +13034,33 @@ that reshape did. In particular, built-in methods only work for data frames,
and tidyr provides no margins or aggregation.")
(license license:expat)))
+(define-public r-tidyselect
+ (package
+ (name "r-tidyselect")
+ (version "1.2.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "tidyselect" version))
+ (sha256
+ (base32
+ "0g4h8mfm5ima0izy4h0c65q478473xsj4hskh15dzg5z1fx9g7hn"))))
+ (properties
+ '((updater-extra-native-inputs . ("r-stringr"))))
+ (build-system r-build-system)
+ (propagated-inputs
+ (list r-cli r-glue r-lifecycle r-rlang r-vctrs r-withr))
+ (native-inputs
+ (list r-knitr r-stringr r-testthat))
+ (home-page "https://cran.r-project.org/web/packages/tidyselect")
+ (synopsis "Select from a set of strings")
+ (description
+ "This package provides a backend for the selecting functions of the
+tidyverse. It makes it easy to implement select-like functions in your own
+packages in a way that is consistent with other tidyverse interfaces for
+selection.")
+ (license license:gpl3)))
+
(define-public r-tidyverse
(package
(name "r-tidyverse")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index ce83de80b2c..55350c0e0a2 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -1586,33 +1586,6 @@ Features:
@end itemize")
(license license:asl2.0)))
-(define-public r-tidyselect
- (package
- (name "r-tidyselect")
- (version "1.2.1")
- (source
- (origin
- (method url-fetch)
- (uri (cran-uri "tidyselect" version))
- (sha256
- (base32
- "0g4h8mfm5ima0izy4h0c65q478473xsj4hskh15dzg5z1fx9g7hn"))))
- (properties
- '((updater-extra-native-inputs . ("r-stringr"))))
- (build-system r-build-system)
- (propagated-inputs
- (list r-cli r-glue r-lifecycle r-rlang r-vctrs r-withr))
- (native-inputs
- (list r-knitr r-stringr r-testthat))
- (home-page "https://cran.r-project.org/web/packages/tidyselect")
- (synopsis "Select from a set of strings")
- (description
- "This package provides a backend for the selecting functions of the
-tidyverse. It makes it easy to implement select-like functions in your own
-packages in a way that is consistent with other tidyverse interfaces for
-selection.")
- (license license:gpl3)))
-
(define-public r-spams
(package
(name "r-spams")