From 582b1e16ffaa9e7066cee76c642e39278afeb6cd Mon Sep 17 00:00:00 2001 From: "King, Spencer" Date: Wed, 30 Oct 2024 21:46:30 +0000 Subject: [PATCH] gnu: Add r-imola. * gnu/packages/cran.scm (r-imola): New variable. Change-Id: I190847c8f80261c77954db242511a4e05a566695 Signed-off-by: Ricardo Wurmus --- gnu/packages/cran.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index f771c7b03e6d8a8131a8d226e9dc78f8dce80a56..5f3594fe413c0ab2ec3dcc0909f1bef2ac585a7c 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -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")