me
/
guix
Archived
1
0
Fork 0

gnu: Add r-formula-tools.

* gnu/packages/cran.scm (r-formula-tools): New variable.
Ricardo Wurmus 2023-07-19 13:09:25 +02:00
parent 5f6daad3c8
commit c31eea21dd
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 24 additions and 0 deletions

View File

@ -29625,6 +29625,30 @@ to improve the readability of data presented in tabular form rendered in web
pages.") pages.")
(license license:expat))) (license license:expat)))
(define-public r-formula-tools
(package
(name "r-formula-tools")
(version "1.7.1")
(source (origin
(method url-fetch)
(uri (cran-uri "formula.tools" version))
(sha256
(base32
"15d3ikfmsh9zszfgfkrxb3jkipl41inm7n6bhs73kwlnklnygq2g"))))
(properties `((upstream-name . "formula.tools")))
(build-system r-build-system)
(propagated-inputs (list r-operator-tools))
(home-page "https://github.com/decisionpatterns/formula.tools")
(synopsis
"Utilities for manipulating formulas, calls, assignments and other R objects")
(description
"These utilities facilitate the programmatic manipulations of formulas,
expressions, calls, assignments and other R language objects. These objects
all share the same structure: a left-hand side, operator and right-hand side.
This packages provides methods for accessing and modifying this structures as
well as extracting and replacing names and symbols from these objects.")
(license license:gpl2)))
(define-public r-xmisc (define-public r-xmisc
(package (package
(name "r-xmisc") (name "r-xmisc")