guix-commits
[Top][All Lists]
Advanced

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

02/08: gnu: Add r-processx.


From: Ricardo Wurmus
Subject: 02/08: gnu: Add r-processx.
Date: Tue, 6 Feb 2018 05:22:04 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 2058e37d615766774b8fdcdd02ec06a6100aac39
Author: Ricardo Wurmus <address@hidden>
Date:   Tue Feb 6 10:51:47 2018 +0100

    gnu: Add r-processx.
    
    * gnu/packages/cran.scm (r-processx): New variable.
---
 gnu/packages/cran.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 8e52b2a..7f3363a 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -1881,3 +1881,32 @@ script.")
      "This package allows the user to specify debug messages as special string
 constants, and control debugging of packages via environment variables.")
     (license license:expat)))
+
+(define-public r-processx
+  (package
+    (name "r-processx")
+    (version "2.0.0.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "processx" version))
+       (sha256
+        (base32
+         "0yw23lp9xjvbpswzghkmjiayw7p19hbvmgv58k3i6b8g5nav4qcg"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-assertthat" ,r-assertthat)
+       ("r-crayon" ,r-crayon)
+       ("r-debugme" ,r-debugme)
+       ("r-r6" ,r-r6)))
+    (home-page "https://github.com/r-lib/processx3";)
+    (synopsis "Execute and control system processes")
+    (description
+     "This package provides portable tools to run system processes in the
+background.  It can check if a background process is running; wait on a
+background process to finish; get the exit status of finished processes; kill
+background processes and their children; restart processes.  It can read the
+standard output and error of the processes, using non-blocking connections.
address@hidden can poll a process for standard output or error, with a
+timeout.  It can also poll several processes at once.")
+    (license license:expat)))



reply via email to

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