guix_mirror_bot pushed a commit to branch r-team
in repository guix.
commit 43878b9e4845345b8b1a3401de240ca1b3f6eb28
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Thu Mar 12 09:52:48 2026 +0100
gnu: Add r-tables.
* gnu/packages/cran.scm (r-tables): New variable.
Change-Id: Ic247e02577ce0dfadc4f8628f34f0ab454f621b0
---
gnu/packages/cran.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index d3d4502acf..f194dd4175 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -12847,6 +12847,28 @@ dissimilarity analysis. Most of its multivariate
tools can be used for other
data types as well.")
(license license:gpl2+)))
+(define-public r-tables
+ (package
+ (name "r-tables")
+ (version "0.9.33")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "tables" version))
+ (sha256
+ (base32 "0vzja9g5w8afr68q0nx8szl7zx3f8z7dwzf6zhc0lzysrsm8g4kv"))))
+ (properties `((upstream-name . "tables")))
+ (build-system r-build-system)
+ (propagated-inputs (list r-htmltools r-knitr))
+ (native-inputs (list r-hmisc r-kableextra r-knitr r-magrittr r-rmarkdown))
+ (home-page "https://dmurdoch.github.io/tables/")
+ (synopsis "Formula-driven table generation")
+ (description
+ "This package computes and displays complex tables of summary statistics.
+Output may be in @code{LaTeX}, HTML, plain text, or an R matrix for further
+processing.")
+ (license license:gpl2)))
+
(define-public r-tailor
(package
(name "r-tailor")