gnu: r-shiny: Add missing inputs.

* gnu/packages/cran.scm (r-shiny)[propagated-inputs]: Add r-later, r-promises,
r-rlang, and r-withr.
[native-inputs]: Add gfortran.
This commit is contained in:
Ricardo Wurmus 2020-03-25 09:34:31 +01:00
parent 51d1a7a2ef
commit 2fcd2e1a5f
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -838,15 +838,19 @@ (define-public r-shiny
#t)))))
(propagated-inputs
`(("r-crayon" ,r-crayon)
("r-fastmap" ,r-fastmap)
("r-httpuv" ,r-httpuv)
("r-mime" ,r-mime)
("r-jsonlite" ,r-jsonlite)
("r-xtable" ,r-xtable)
("r-digest" ,r-digest)
("r-fastmap" ,r-fastmap)
("r-htmltools" ,r-htmltools)
("r-httpuv" ,r-httpuv)
("r-jsonlite" ,r-jsonlite)
("r-later" ,r-later)
("r-mime" ,r-mime)
("r-promises" ,r-promises)
("r-r6" ,r-r6)
("r-sourcetools" ,r-sourcetools)))
("r-rlang" ,r-rlang)
("r-sourcetools" ,r-sourcetools)
("r-withr" ,r-withr)
("r-xtable" ,r-xtable)))
(inputs
`(("js-datatables" ,js-datatables)
("js-html5shiv" ,js-html5shiv)
@ -857,7 +861,8 @@ (define-public r-shiny
("js-highlight" ,js-highlight)
("js-es5-shim" ,js-es5-shim)))
(native-inputs
`(("uglify-js" ,uglify-js)))
`(("uglify-js" ,uglify-js)
("gfortran" ,gfortran)))
(home-page "http://shiny.rstudio.com")
(synopsis "Easy interactive web applications with R")
(description