1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-25 19:50:30 +02:00

gnu: Add r-imola.

* gnu/packages/cran.scm (r-imola): New variable.

Change-Id: I190847c8f80261c77954db242511a4e05a566695
Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
King, Spencer
2024-10-30 21:46:30 +00:00
committed by Ricardo Wurmus
parent b895948fff
commit 582b1e16ff

View File

@@ -10384,6 +10384,32 @@ experiments\" (2011), Annals of Applied Statistics, Vol. 5, No. 3, 1752-1779,
by Li, Brown, Huang, and Bickel")
(license license:gpl2+)))
(define-public r-imola
(package
(name "r-imola")
(version "0.5.0")
(source
(origin
(method url-fetch)
(uri (cran-uri "imola" version))
(sha256
(base32 "087zdzn1vkyvqrdlwnackr6jyacrhg69q4b77s8z477kplickw8x"))))
(properties `((upstream-name . "imola")))
(build-system r-build-system)
(propagated-inputs (list r-glue
r-htmltools
r-magrittr
r-shiny
r-stringi
r-yaml))
(native-inputs (list r-knitr))
(home-page "https://github.com/pedrocoutinhosilva/imola")
(synopsis "CSS layouts (grid and flexbox) for R/Shiny")
(description
"This package allows users to create CSS grid and flexbox layouts for
R/Shiny without needing to write custom CSS.")
(license license:expat)))
(define-public r-inext
(package
(name "r-inext")