guix-commits
[Top][All Lists]
Advanced

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

04/74: gnu: Add r-furrr.


From: guix-commits
Subject: 04/74: gnu: Add r-furrr.
Date: Thu, 7 Mar 2019 17:52:59 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 6e8b38d3e88545d7b3d3f6318e536d8269358664
Author: Ricardo Wurmus <address@hidden>
Date:   Thu Mar 7 22:16:23 2019 +0100

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index cf00ee5..5d401e3 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -6814,6 +6814,32 @@ not found in either TASSEL or @code{r-qtl} in addition 
to visualization of
 genotypes as \"graphical genotypes\".")
     (license license:gpl3)))
 
+(define-public r-furrr
+  (package
+    (name "r-furrr")
+    (version "0.1.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "furrr" version))
+       (sha256
+        (base32
+         "1ld9aa9hydna94hgm6p91zjbfv1dz1vsgchjlpknkg6irbvkfafx"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-future" ,r-future)
+       ("r-globals" ,r-globals)
+       ("r-purrr" ,r-purrr)
+       ("r-rlang" ,r-rlang)))
+    (home-page "https://github.com/DavisVaughan/furrr";)
+    (synopsis "Apply mapping functions in parallel using futures")
+    (description
+     "This package provides implementations of the family of @code{map()}
+functions from the @code{purrr} package that can be resolved using any
address@hidden backend, e.g. parallel on the local machine or
+distributed on a compute cluster.")
+    (license license:lgpl2.1+)))
+
 (define-public r-abjutils
   (package
     (name "r-abjutils")



reply via email to

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