diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2022-11-05 10:36:35 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-11-05 22:59:50 +0100 |
commit | 69a759854dc4a0fc55e82a96ca6d691b9ba051ec (patch) | |
tree | a7e815f331774076ff13c1e0c0f814d5f6ed457f | |
parent | e5a0381e6defd9c1ffd1b57d9de7f31636c87b68 (diff) | |
download | guix-69a759854dc4a0fc55e82a96ca6d691b9ba051ec.tar.gz |
gnu: Add r-fresh.
* gnu/packages/cran.scm (r-fresh): New variable.
-rw-r--r-- | gnu/packages/cran.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 81c08a47c8..eff789ba8d 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -8054,6 +8054,28 @@ multivariate distributions.") chaotic time series analysis.") (license license:gpl2))) +(define-public r-fresh + (package + (name "r-fresh") + (version "0.2.0") + (source (origin + (method url-fetch) + (uri (cran-uri "fresh" version)) + (sha256 + (base32 + "1787mm6w2s5x9scxy7r9cb77rgpmy4ngwkn4z8g3gs48mrab4bd9")))) + (properties `((upstream-name . "fresh"))) + (build-system r-build-system) + (propagated-inputs (list r-htmltools r-rstudioapi r-sass r-shiny)) + (native-inputs (list r-knitr)) + (home-page "https://github.com/dreamRs/fresh") + (synopsis "Create custom Bootstrap themes to use in Shiny") + (description + "Customize Bootstrap and Bootswatch themes, like colors, fonts, +grid layout, to use in Shiny applications, rmarkdown documents and +flexdashboard.") + (license license:gpl3))) + (define-public r-urca (package (name "r-urca") |