me
/
guix
Archived
1
0
Fork 0

gnu: r-markdown: Update to 1.3.

* gnu/packages/statistics.scm (r-markdown): Update to 1.3.
[propagated-inputs]: Add r-commonmark.
master
Ricardo Wurmus 2022-11-04 09:59:03 +01:00
parent f60cb8f40d
commit 5baa52d0e4
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 3 additions and 3 deletions

View File

@ -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