diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2020-03-12 14:24:47 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-03-12 15:15:03 +0100 |
commit | 0cc0e7e3701be2bd455829d33a613dc62c99a138 (patch) | |
tree | a359d4979456988a657ff494c231c7741d783af3 /gnu | |
parent | f718c28cc6f8f4b338bf9483fd00522bccbf613c (diff) | |
download | patches-0cc0e7e3701be2bd455829d33a613dc62c99a138.tar patches-0cc0e7e3701be2bd455829d33a613dc62c99a138.tar.gz |
gnu: r-ggplotify: Update to 0.0.5.
* gnu/packages/cran.scm (r-ggplotify): Update to 0.0.5.
[native-inputs]: Add r-knitr.
Diffstat (limited to 'gnu')
-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 2229ba06e5..e9af6440da 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -14082,19 +14082,21 @@ package.") (define-public r-ggplotify (package (name "r-ggplotify") - (version "0.0.4") + (version "0.0.5") (source (origin (method url-fetch) (uri (cran-uri "ggplotify" version)) (sha256 (base32 - "0nv3wdmxnc5ww9m3xlgnb0jp30j45dg33nqc6gg3y36svg8anjcg")))) + "0pfnp4lrissf21z7867kdm6slr979kchyva8iaf83i1302kscph3")))) (build-system r-build-system) (propagated-inputs `(("r-ggplot2" ,r-ggplot2) ("r-gridgraphics" ,r-gridgraphics) ("r-rvcheck" ,r-rvcheck))) + (native-inputs + `(("r-knitr" ,r-knitr))) (home-page "https://github.com/GuangchuangYu/ggplotify") (synopsis "Convert plots to @code{grob} or @code{ggplot} object") (description |