Updated patch attached.

2015-09-13 13:56 GMT-03:00 Vicente Vera <vicente...@gmail.com>:
>
From cb3a4a5ada258b8ae7ff1850f0b69ff14cae9766 Mon Sep 17 00:00:00 2001
From: Vicente Vera Parra <vicente...@gmail.com>
Date: Tue, 15 Sep 2015 14:25:14 -0300
Subject: [PATCH 19/19] gnu: Add r-dplyr.

* gnu/packages/statistics.scm (r-dplyr): New variable.
---
 gnu/packages/statistics.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 9607270..0b8456b 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -933,3 +933,32 @@ so they do not require the methods package.  These classes allow public and
 private members, and they support inheritance, even when the classes are
 defined in different packages.")
     (license license:expat)))
+
+(define-public r-dplyr
+  (package
+    (name "r-dplyr")
+    (version "0.4.3")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "mirror://cran/src/contrib/dplyr_"
+                                  version ".tar.gz"))
+              (sha256
+               (base32
+                "1p8rbn4p4yrx2840dapwiahf9iqa8gnvd35nyc200wfhmrxlqdlc"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-assertthat" ,r-assertthat)
+       ("r-r6" ,r-r6)
+       ("r-rcpp" ,r-rcpp)
+       ("r-magrittr" ,r-magrittr)
+       ("r-lazyeval" ,r-lazyeval)
+       ("r-dbi" ,r-dbi)
+       ("r-bh" ,r-bh)))
+    (home-page
+     "https://github.com/hadley/dplyr";)
+    (synopsis
+     "Dplyr: a grammar of data manipulation")
+    (description
+     "This package provides a fast, consistent tool for working with data
+frame like objects, both in memory and out of memory.")
+    (license license:expat)))
-- 
2.5.2

Reply via email to