diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2026-02-16 16:51:00 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-03-07 11:57:20 +0100 |
| commit | 98ef04b6352b8aa5bcbfe7cccb5eebf0bb48a2ae (patch) | |
| tree | 3d3bd7c97d93b3a47921638d1fcea808e3d0c029 /gnu/packages/cran.scm | |
| parent | 51bce6f7c7651b98aa6dfb34bfe5297863037503 (diff) | |
gnu: r-rematch: Move to (gnu packages cran).
* gnu/packages/statistics.scm (r-rematch): Move from here...
* gnu/packages/cran.scm (r-rematch): ...to here.
Change-Id: I7d2253a4f5e4fcfc4bcbbf09fc55a860f8bb2cc7
Diffstat (limited to 'gnu/packages/cran.scm')
| -rw-r--r-- | gnu/packages/cran.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index e7fd756024a..42f2cb94b59 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -6928,6 +6928,27 @@ significance (Johnson & Neyman, 1936; cf. Spiller et al., 2012), etc.") package registries.") (license license:gpl2+))) +(define-public r-rematch + (package + (name "r-rematch") + (version "2.0.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "rematch" version)) + (sha256 + (base32 + "09jwg3glp32q4ml4khhzi8j7bzg9zhqqdg1m6r8gibh756zzgnhm")))) + (build-system r-build-system) + (native-inputs (list r-testthat)) + (home-page "https://github.com/MangoTheCat/rematch") + (synopsis "Match regular expressions with a nicer API") + (description + "This package provides a small wrapper on @code{regexpr} to extract the +matches and captured groups from the match of a regular expression to a +character vector.") + (license license:expat))) + (define-public r-reshape2 (package (name "r-reshape2") |
