diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-02-11 00:53:26 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-02-11 01:03:23 +0100 |
commit | f1d3357e064f83787b953d94ef5403e4cab8bc57 (patch) | |
tree | d2407270b329102de6312e204596ddb53f5d75fc /gnu/packages/cran.scm | |
parent | ce6c3c191612fd25c58289e51ef82ce00422fd3e (diff) | |
download | guix-f1d3357e064f83787b953d94ef5403e4cab8bc57.tar.gz |
gnu: r-riverplot: Update to 0.10.
* gnu/packages/cran.scm (r-riverplot): Update to 0.10. [propagated-inputs]: Add r-rcolorbrewer. [native-inputs]: Add r-knitr.
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 79726fe5ff..fd5fea68cb 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -6326,15 +6326,19 @@ are included.") (define-public r-riverplot (package (name "r-riverplot") - (version "0.6") + (version "0.10") (source (origin (method url-fetch) (uri (cran-uri "riverplot" version)) (sha256 (base32 - "0q1icpny8nkxyjhawyjzwrw8qlz0ayn2xyrsqrm4vkxyv6c9xk8z")))) + "04ap1dsa7fx03l73jhv1ql3adaaaz2100qawdplxa9xmrllgcgbj")))) (build-system r-build-system) + (propagated-inputs + `(("r-rcolorbrewer" ,r-rcolorbrewer))) + (native-inputs + `(("r-knitr" ,r-knitr))) (home-page "https://logfc.wordpress.com") (synopsis "Sankey or ribbon plots") (description |