me
/
guix
Archived
1
0
Fork 0

gnu: Add r-piton.

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

Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
master
Kyle Andrews 2022-05-12 02:10:22 +00:00 committed by Ricardo Wurmus
parent de781de2e9
commit 15d9578e1d
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 22 additions and 0 deletions

View File

@ -7813,6 +7813,28 @@ annotation file. This package is intended to be used as example data for
packages that work with genomic data.")
(license license:gpl2+)))
(define-public r-piton
(package
(name "r-piton")
(version "1.0.0")
(source
(origin
(method url-fetch)
(uri (cran-uri "piton" version))
(sha256
(base32 "1krf6zi238m275nxjlpyayv8y2drbgs2kg19dpkqm0lmlz5y5ar8"))))
(properties `((upstream-name . "piton")))
(build-system r-build-system)
(propagated-inputs (list r-rcpp))
(home-page "https://github.com/Ironholds/piton")
(synopsis "Parsing expression grammars in Rcpp")
(description
"This package provides a wrapper around the Parsing Expression Grammar
Template Library, a C++11 library for generating parsing expression grammars,
that makes it accessible within Rcpp. With this, developers can implement
their own grammars and easily expose them in R packages.")
(license license:expat)))
(define-public r-uuid
(package
(name "r-uuid")