diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-09-05 19:51:15 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-09-05 20:03:08 +0200 |
commit | e5db6890adb1b842d4ad5dc3313a65f6628ec3bf (patch) | |
tree | f402dac8a47a9afdeee59f9f802efa835c60d932 /gnu/packages/statistics.scm | |
parent | f0519c8faec872b599debde5f2f91d6dbf57a5b4 (diff) | |
download | gnu-guix-e5db6890adb1b842d4ad5dc3313a65f6628ec3bf.tar gnu-guix-e5db6890adb1b842d4ad5dc3313a65f6628ec3bf.tar.gz |
gnu: r-ztable: Update to 0.2.0.
* gnu/packages/statistics.scm (r-ztable): Update to 0.2.0.
[propagated-inputs]: Add r-flextable, r-magrittr, r-moonbook, r-officer,
r-rcolorbrewer, r-scales, and r-stringr.
Diffstat (limited to 'gnu/packages/statistics.scm')
-rw-r--r-- | gnu/packages/statistics.scm | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index eb4063c984..ccff5fc293 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -4251,14 +4251,22 @@ series of numeric vectors/matrices and factors.") (define-public r-ztable (package (name "r-ztable") - (version "0.1.8") + (version "0.2.0") (source (origin (method url-fetch) (uri (cran-uri "ztable" version)) (sha256 (base32 - "1hk5k9614n52dpfrhdws06w4gvwhnz8q47x4cwxx88qmrzm8z2m3")))) + "0g7khk5ifsdh9p31wlwh2l5mn1hzxzpv6qcn1wh34vsfjdmijjwy")))) (build-system r-build-system) + (propagated-inputs + `(("r-flextable" ,r-flextable) + ("r-magrittr" ,r-magrittr) + ("r-moonbook" ,r-moonbook) + ("r-officer" ,r-officer) + ("r-rcolorbrewer" ,r-rcolorbrewer) + ("r-scales" ,r-scales) + ("r-stringr" ,r-stringr))) (home-page "https://cran.r-project.org/web/packages/ztable") (synopsis "Zebra-striped tables in LaTeX and HTML formats for R") (description |