diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2022-11-04 09:59:03 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-11-04 10:01:21 +0100 |
commit | 5baa52d0e481ea0e4422c32126149b3bc371e120 (patch) | |
tree | 16b0d953878b247c7ce917ccff37fdba5aca6e28 | |
parent | f60cb8f40d4c6bb745d054a0a24c24fb4f6f0998 (diff) | |
download | guix-5baa52d0e481ea0e4422c32126149b3bc371e120.tar.gz |
gnu: r-markdown: Update to 1.3.
* gnu/packages/statistics.scm (r-markdown): Update to 1.3. [propagated-inputs]: Add r-commonmark.
-rw-r--r-- | gnu/packages/statistics.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index b0e8b9d2b4..fc16a3fee1 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -1514,13 +1514,13 @@ data derived from /etc/mime.types in UNIX-type systems.") (define-public r-markdown (package (name "r-markdown") - (version "1.1") + (version "1.3") (source (origin (method url-fetch) (uri (cran-uri "markdown" version)) (sha256 (base32 - "06zwbrp14bri3470anadd7dvgmw06xf8df6v2pk64wx3f9sd934d")))) + "1w9hrc745zwgsnmr72jkwfh22xqgdsq089qcajlc69xrwya3wxxi")))) (build-system r-build-system) ;; Skip check phase because the tests require the r-knitr package to be ;; installed. This prevents installation failures. Knitr normally @@ -1528,7 +1528,7 @@ data derived from /etc/mime.types in UNIX-type systems.") ;; package. (arguments `(#:tests? #f)) (propagated-inputs - (list r-mime r-xfun)) + (list r-commonmark r-mime r-xfun)) (home-page "https://github.com/rstudio/markdown") (synopsis "Markdown rendering for R") (description |