mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: Add r-dosnow.
* gnu/packages/cran.scm (r-dosnow): New variable.
This commit is contained in:
parent
6ab97ed56a
commit
3cf9ae2f75
1 changed files with 24 additions and 0 deletions
|
@ -3899,3 +3899,27 @@ (define-public r-promises
|
|||
while also attending to something else. Semantics are similar to JavaScript
|
||||
promises, but with a syntax that is idiomatic R.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public r-dosnow
|
||||
(package
|
||||
(name "r-dosnow")
|
||||
(version "1.0.16")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "doSNOW" version))
|
||||
(sha256
|
||||
(base32
|
||||
"13ir4a8252h4yvp5ir9xnwack1kn58i4ny6sf2qdc12zspn3850n"))))
|
||||
(properties `((upstream-name . "doSNOW")))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
`(("r-foreach" ,r-foreach)
|
||||
("r-iterators" ,r-iterators)
|
||||
("r-snow" ,r-snow)))
|
||||
(home-page "https://cran.r-project.org/web/packages/doSNOW")
|
||||
(synopsis "Foreach parallel adaptor for the snow package")
|
||||
(description
|
||||
"This package provides a parallel backend for the @code{%dopar%} function
|
||||
using the @code{snow} package.")
|
||||
(license license:gpl2)))
|
||||
|
|
Loading…
Reference in a new issue