[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/03: gnu: r-wordcloud: Add r-tm to inputs.
From: |
guix-commits |
Subject: |
03/03: gnu: r-wordcloud: Add r-tm to inputs. |
Date: |
Tue, 3 Sep 2019 06:46:13 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit f847b6594371cf1ad56e603ddf57e1f8691c325d
Author: Ricardo Wurmus <address@hidden>
Date: Tue Sep 3 12:45:21 2019 +0200
gnu: r-wordcloud: Add r-tm to inputs.
* gnu/packages/cran.scm (r-wordcloud)[propagated-inputs]: Add r-tm.
---
gnu/packages/cran.scm | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index dd378d2..5bf37e3 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -9409,7 +9409,10 @@ pairs (Selesnick 2001, 2002).")
(build-system r-build-system)
(propagated-inputs
`(("r-rcolorbrewer" ,r-rcolorbrewer)
- ("r-rcpp" ,r-rcpp)))
+ ("r-rcpp" ,r-rcpp)
+ ;; The "tm" package is only "suggested" according to CRAN, but the
+ ;; wordcloud package cannot be loaded without it.
+ ("r-tm" ,r-tm)))
(home-page "https://cran.r-project.org/web/packages/wordcloud")
(synopsis "Word clouds")
(description