gnu: Add r-rematch2.

* gnu/packages/cran.scm (r-rematch2): New variable.

Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
master
Nicolò Balzarotti 2019-03-14 10:53:25 +01:00 committed by Ricardo Wurmus
parent 8a55c38915
commit 100f56024e
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 22 additions and 0 deletions

View File

@ -14,6 +14,7 @@
;;; Copyright © 2018 Leo Famulari <leo@famulari.name>
;;; Copyright © 2018 Marius Bakke <mbakke@fastmail.com>
;;; Copyright © 2018, 2019 Brett Gilio <brettg@posteo.net>
;;; Copyright © 2019 Nicolò Balzarotti <anothersms@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@ -11717,3 +11718,24 @@ plotting functions are available for analyzing clustering results.")
signals. It provides functionality similar to command-line tool suites within
R, enabling interactive analysis and visualization of genome-scale data.")
(license license:expat)))
(define-public r-rematch2
(package
(name "r-rematch2")
(version "2.0.1")
(source
(origin
(method url-fetch)
(uri (cran-uri "rematch2" version))
(sha256
(base32
"16k0i5p7fa3qfxv59ijyn638wpz8n4jrkrnilqmh5g9l8f8bn4h6"))))
(build-system r-build-system)
(propagated-inputs
`(("r-tibble" ,r-tibble)))
(home-page "https://github.com/r-lib/rematch2")
(synopsis "Tidy output from regular expression matching")
(description
"This package provides wrappers on @code{regexpr} and @code{gregexpr} to
return the match results in tidy data frames.")
(license license:expat)))