diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-09-03 12:45:21 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-09-03 12:46:01 +0200 |
commit | f847b6594371cf1ad56e603ddf57e1f8691c325d (patch) | |
tree | 22828c300bee33ce71a6720d117ba3d5862075bc /gnu | |
parent | f785d546819734d224f4c7a9421eca8e902b27bf (diff) | |
download | patches-f847b6594371cf1ad56e603ddf57e1f8691c325d.tar patches-f847b6594371cf1ad56e603ddf57e1f8691c325d.tar.gz |
gnu: r-wordcloud: Add r-tm to inputs.
* gnu/packages/cran.scm (r-wordcloud)[propagated-inputs]: Add r-tm.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index dd378d2b9c..5bf37e3900 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 |