guix-commits
[Top][All Lists]
Advanced

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

06/324: gnu: Add r-arrow.


From: guix-commits
Subject: 06/324: gnu: Add r-arrow.
Date: Sat, 5 Jun 2021 03:14:25 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit ab66c9a2cda10edfbf5f2f11481d4d2d1d604bf5
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Fri Jun 4 16:07:23 2021 +0200

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index cf24d0f..2e7e904 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -17746,6 +17746,43 @@ colored by the number of neighboring points.  This is 
useful to visualize the
 2D-distribution of points in case of overplotting.")
     (license license:gpl3)))
 
+(define-public r-arrow
+  (package
+    (name "r-arrow")
+    (version "4.0.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "arrow" version))
+       (sha256
+        (base32
+         "19kzfjxp90ybi1px3r93mfx59nqmnagxr4g73y7iby5blwl1bblc"))))
+    (properties `((upstream-name . "arrow")))
+    (build-system r-build-system)
+    (inputs
+     `(("zlib" ,zlib)))
+    (propagated-inputs
+     `(("r-assertthat" ,r-assertthat)
+       ("r-bit64" ,r-bit64)
+       ("r-cpp11" ,r-cpp11)
+       ("r-purrr" ,r-purrr)
+       ("r-r6" ,r-r6)
+       ("r-rlang" ,r-rlang)
+       ("r-tidyselect" ,r-tidyselect)
+       ("r-vctrs" ,r-vctrs)))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)
+       ("r-knitr" ,r-knitr)))
+    (home-page "https://github.com/apache/arrow/";)
+    (synopsis "R integration to Apache Arrow")
+    (description
+     "Apache Arrow is a cross-language development platform for in-memory
+data.  It specifies a standardized language-independent columnar memory format
+for flat and hierarchical data, organized for efficient analytic operations on
+modern hardware.  This package provides an R interface to the Arrow C++
+library.")
+    (license license:asl2.0)))
+
 (define-public r-rex
   (package
     (name "r-rex")



reply via email to

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