guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: Add r-box.


From: guix-commits
Subject: branch master updated: gnu: Add r-box.
Date: Wed, 14 Feb 2024 04:25:43 -0500

This is an automated email from the git hooks/post-receive script.

rekado pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 2ba2875dbd gnu: Add r-box.
2ba2875dbd is described below

commit 2ba2875dbda4b080fcad4e6d672bb4104d59dd0c
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Wed Feb 14 10:24:40 2024 +0100

    gnu: Add r-box.
    
    * gnu/packages/cran.scm (r-box): New variable.
    
    Change-Id: I5dc6f0ffae3dc3540d431f2533493f1eb82f75b7
---
 gnu/packages/cran.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 407e64ae05..3b8ad2baac 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -192,6 +192,27 @@ estimating equations} (GEE) or @dfn{generalized linear 
mixed effect
 models} (GLMM).")
     (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
   (package
     (name "r-brio")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]