gnu: Add r-box.
* gnu/packages/cran.scm (r-box): New variable. Change-Id: I5dc6f0ffae3dc3540d431f2533493f1eb82f75b7master
parent
ac470c516e
commit
2ba2875dbd
|
@ -192,6 +192,27 @@ estimating equations} (GEE) or @dfn{generalized linear mixed effect
|
||||||
models} (GLMM).")
|
models} (GLMM).")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
|
(define-public r-box
|
||||||
|
(package
|
||||||
|
(name "r-box")
|
||||||
|
(version "1.2.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "box" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "00g5ik3f6260m38jl8k4s8nycmy7mzdwr7qslrl66phpg84xzmln"))))
|
||||||
|
(properties `((upstream-name . "box")))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(native-inputs (list r-knitr))
|
||||||
|
(home-page "https://klmr.me/box/")
|
||||||
|
(synopsis "Write reusable, composable and modular R code")
|
||||||
|
(description
|
||||||
|
"This package provides a modern module system for R. Organize code into
|
||||||
|
hierarchical, composable, reusable modules, and use it effortlessly across
|
||||||
|
projects via a flexible, declarative dependency loading syntax.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public r-brio
|
(define-public r-brio
|
||||||
(package
|
(package
|
||||||
(name "r-brio")
|
(name "r-brio")
|
||||||
|
|
Reference in New Issue