guix-commits
[Top][All Lists]
Advanced

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

01/03: gnu: Add r-job.


From: guix-commits
Subject: 01/03: gnu: Add r-job.
Date: Mon, 1 Jan 2024 13:25:13 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 510c2206e4faabee1978c4194745183707bb943e
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Mon Jan 1 19:21:37 2024 +0100

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 36c00d2885..bf9e94adee 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -4201,6 +4201,29 @@ performance evaluation of BSS algorithms, are given.  
The package is described
 in Miettinen, Nordhausen and Taskinen (2017) <doi:10.18637/jss.v076.i02>.")
     (license license:gpl2+)))
 
+(define-public r-job
+  (package
+    (name "r-job")
+    (version "0.3.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "job" version))
+       (sha256
+        (base32 "0d7pw3q5lqlgmav1vx63y8l6gdav96656bg378wj001rx5gx052h"))))
+    (properties `((upstream-name . "job")))
+    (build-system r-build-system)
+    (propagated-inputs (list r-digest r-rstudioapi))
+    (home-page "https://cran.r-project.org/package=job";)
+    (synopsis "Run code as an RStudio job")
+    (description
+     "Call @code{job::job({<code here>})} to run R code as an RStudio job and
+keep your console free in the meantime.  This allows for a productive workflow
+while testing (multiple) long-running chunks of code.  It can also be used to
+organize results using the RStudio Jobs GUI or to test code in a clean
+environment.  Two RStudio Addins can be used to run selected code as a job.")
+    (license license:expat)))
+
 (define-public r-jsonify
   (package
     (name "r-jsonify")



reply via email to

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