diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-02-06 10:51:47 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-02-06 11:21:56 +0100 |
commit | 2058e37d615766774b8fdcdd02ec06a6100aac39 (patch) | |
tree | a3355a48da5e120bc8c21945689dbb4e7948b01a | |
parent | a3257d427ee60ddf9d23118ad86f34fb5edb284e (diff) | |
download | patches-2058e37d615766774b8fdcdd02ec06a6100aac39.tar patches-2058e37d615766774b8fdcdd02ec06a6100aac39.tar.gz |
gnu: Add r-processx.
* gnu/packages/cran.scm (r-processx): New variable.
-rw-r--r-- | gnu/packages/cran.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 8e52b2a37e..7f3363a1f4 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. +@code{processx} can poll a process for standard output or error, with a +timeout. It can also poll several processes at once.") + (license license:expat))) |