guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/32: gnu: Add r-formula-tools.


From: guix-commits
Subject: 04/32: gnu: Add r-formula-tools.
Date: Wed, 19 Jul 2023 09:55:34 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit c31eea21ddb48bc66635b2681017e7e5e055fd59
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Wed Jul 19 13:09:25 2023 +0200

    gnu: Add r-formula-tools.
    
    * gnu/packages/cran.scm (r-formula-tools): New variable.
---
 gnu/packages/cran.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index df0840502d..589bcd8f30 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -29625,6 +29625,30 @@ to improve the readability of data presented in 
tabular form rendered in web
 pages.")
     (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
   (package
     (name "r-xmisc")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]