mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
gnu: r-glue: Update to 1.4.0.
* gnu/packages/cran.scm (r-glue): Update to 1.4.0. [native-inputs]: Add commment explaining why r-knitr is not an input.
This commit is contained in:
parent
3707efe4e1
commit
9536367ca0
1 changed files with 7 additions and 2 deletions
|
@ -1559,15 +1559,20 @@ (define-public r-colorspace
|
||||||
(define-public r-glue
|
(define-public r-glue
|
||||||
(package
|
(package
|
||||||
(name "r-glue")
|
(name "r-glue")
|
||||||
(version "1.3.2")
|
(version "1.4.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (cran-uri "glue" version))
|
(uri (cran-uri "glue" version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0alklqcf68kmccssp4j7a7fv553pyqyy6mkkfslav83inppm4d3g"))))
|
"1hb9j2519jv9zgkgjb25hnqi22i7zxnaksqd16m4nxa1f6gl0v7a"))))
|
||||||
(build-system r-build-system)
|
(build-system r-build-system)
|
||||||
|
;; knitr depends on glue, so we can't add knitr here to build the
|
||||||
|
;; vignettes.
|
||||||
|
#;
|
||||||
|
(native-inputs
|
||||||
|
`(("r-knitr" ,r-knitr)))
|
||||||
(home-page "https://github.com/tidyverse/glue")
|
(home-page "https://github.com/tidyverse/glue")
|
||||||
(synopsis "Interpreted string literals")
|
(synopsis "Interpreted string literals")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in a new issue