diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-03-09 21:38:38 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-03-09 22:05:26 +0100 |
commit | bd1ff10ea0a70b1530c46d63bb10e71c8316bfd1 (patch) | |
tree | 374d5d8a6741abf17ed6e50311a6978db0914ff0 | |
parent | 6fe7e138b95720d1f20de3f39681b0233499da8d (diff) | |
download | guix-bd1ff10ea0a70b1530c46d63bb10e71c8316bfd1.tar guix-bd1ff10ea0a70b1530c46d63bb10e71c8316bfd1.tar.gz |
gnu: r-pillar: Update to 1.5.1.
* gnu/packages/cran.scm (r-pillar): Update to 1.5.1.
[native-inputs]: Add r-knitr.
-rw-r--r-- | gnu/packages/cran.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index e514adf42e..ff5347de48 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -5379,14 +5379,14 @@ to variables on the left-hand side of the assignment.") (define-public r-pillar (package (name "r-pillar") - (version "1.4.7") + (version "1.5.1") (source (origin (method url-fetch) (uri (cran-uri "pillar" version)) (sha256 (base32 - "167ji21fx04s2niw5pjq9vzxgagxzsg3gimh8dzr2kl5ljrb5vfd")))) + "0wp68cg95895aybi7yjqy0sidvc68lmfqndinpd63dysci9x3r8c")))) (build-system r-build-system) (propagated-inputs `(("r-cli" ,r-cli) @@ -5397,6 +5397,8 @@ to variables on the left-hand side of the assignment.") ("r-rlang" ,r-rlang) ("r-utf8" ,r-utf8) ("r-vctrs" ,r-vctrs))) + (native-inputs + `(("r-knitr" ,r-knitr))) (home-page "https://github.com/r-lib/pillar") (synopsis "Coloured formatting for columns") (description |