mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add r-remoter.
* gnu/packages/cran.scm (r-remoter): New variable. Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
6ad80b2a6b
commit
0c549393b9
1 changed files with 27 additions and 0 deletions
|
@ -20992,3 +20992,30 @@ (define-public r-getpass
|
|||
typed. Currently, RStudio, the command line (every OS), and any platform
|
||||
where tcltk is present are supported.")
|
||||
(license license:bsd-2)))
|
||||
|
||||
(define-public r-remoter
|
||||
(package
|
||||
(name "r-remoter")
|
||||
(version "0.4-0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "remoter" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1a7m63l8phv5jnazvdqdrqkaqjwqzaac5y4jm2jn0ypy4n8jvkfl"))))
|
||||
(properties `((upstream-name . "remoter")))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
`(("r-argon2" ,r-argon2)
|
||||
("r-getpass" ,r-getpass)
|
||||
("r-pbdzmq" ,r-pbdzmq)
|
||||
("r-png" ,r-png)))
|
||||
(home-page "https://github.com/RBigData/remoter")
|
||||
(synopsis
|
||||
"Control a Remote R Session from a Local One")
|
||||
(description
|
||||
"This package provides a set of utilities for client/server computing
|
||||
with R, controlling a remote R session (the server) from a local one (the
|
||||
client).")
|
||||
(license license:bsd-2)))
|
||||
|
|
Loading…
Reference in a new issue