diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-05-04 07:13:21 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-05-04 07:27:50 +0200 |
commit | dfafea7951fa7b4b3255821e1f8cf4fec82981a0 (patch) | |
tree | 53dad2dcab423551961ba704352482609833c425 /gnu | |
parent | d1f236045bdd6390ab56b6fbc34bc54e4c34be72 (diff) | |
download | guix-dfafea7951fa7b4b3255821e1f8cf4fec82981a0.tar.gz |
gnu: r-highr: Update to 0.9.
* gnu/packages/statistics.scm (r-highr): Update to 0.9. [propagated-inputs]: Add r-xfun.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/statistics.scm | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index bffe737003..5e82ecca56 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -1351,14 +1351,21 @@ There is also a Shiny app as a user interface in this package.") (define-public r-highr (package (name "r-highr") - (version "0.8") + (version "0.9") (source (origin (method url-fetch) (uri (cran-uri "highr" version)) (sha256 (base32 - "0my6idnhmmgs4q1vs40y2lh56yij2p59mpwvm53wjs2zk6x1zl2b")))) + "0kgdv2vf1lz3b5kbal9s83gg6812nw7fvrq0rkyr0v4k1lwi3zxy")))) (build-system r-build-system) + (propagated-inputs + `(("r-xfun" ,r-xfun))) + ;; We cannot add knitr to the inputs, because highr depends on xfun, which + ;; is an input to knitr. + #; + (native-inputs + `(("r-knitr" ,r-knitr))) (home-page "https://github.com/yihui/highr") (synopsis "Syntax highlighting for R source code") (description |