>From 9a30410e850000e839002649a5f6183f174fdfa2 Mon Sep 17 00:00:00 2001 Message-Id: <9a30410e850000e839002649a5f6183f174fdfa2.1652634138.git.kyle@posteo.net> From: Kyle Andrews Date: Sun, 15 May 2022 13:01:30 -0400 Subject: [PATCH] gnu: Add r-unglue. --- gnu/packages/cran.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 5c05f20ea7..bbe18e1d67 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -33255,3 +33255,23 @@ (define-public r-zoeppritz coefficients or scattering amplitudes, for seismological P and S-waves at an interface.") (license license:gpl2+))) + +(define-public r-unglue + (package + (name "r-unglue") + (version "0.1.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "unglue" version)) + (sha256 + (base32 "0w8ld4xllx0lj1jz8i2sj92f8136hlwri1d8ldpg1ymxj7aw93vg")))) + (properties `((upstream-name . "unglue"))) + (build-system r-build-system) + (home-page "https://cran.r-project.org/package=unglue") + (synopsis "Extract Matched Substrings Using a Pattern") + (description + "Use syntax inspired by the package 'glue' (provided by r-glue in +Guix) to extract matched substrings in a more compact way than by +using regular expressions.") + (license license:gpl3))) -- 2.36.0