guix-commits
[Top][All Lists]
Advanced

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

06/16: gnu: Add r-magrittr.


From: Ricardo Wurmus
Subject: 06/16: gnu: Add r-magrittr.
Date: Thu, 03 Sep 2015 12:32:28 +0000

rekado pushed a commit to branch master
in repository guix.

commit d69c4b04fafe0326c3b8185e5ca31bec5b310d3a
Author: Ricardo Wurmus <address@hidden>
Date:   Mon Aug 31 15:25:57 2015 +0200

    gnu: Add r-magrittr.
    
    * gnu/packages/statistics.scm (r-magrittr): New variable.
---
 gnu/packages/statistics.scm |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index ecd275e..e8596fb 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -223,3 +223,25 @@ OpenSSL should be used.")
     (description "The labeling package provides a range of axis labeling
 algorithms.")
     (license license:expat)))
+
+(define-public r-magrittr
+  (package
+    (name "r-magrittr")
+    (version "1.5")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://cran/src/contrib/magrittr_"
+                           version ".tar.gz"))
+       (sha256
+        (base32 "1s1ar6rag8m277qcqmdp02gn4awn9bdj9ax0r8s32i59mm1mki05"))))
+    (build-system r-build-system)
+    (home-page "http://cran.r-project.org/web/packages/magrittr/index.html";)
+    (synopsis "A forward-pipe operator for R")
+    (description
+     "Magrittr provides a mechanism for chaining commands with a new
+forward-pipe operator, %>%.  This operator will forward a value, or the result
+of an expression, into the next function call/expression.  There is flexible
+support for the type of right-hand side expressions.  For more information,
+see package vignette.  To quote Rene Magritte, \"Ceci n'est pas un pipe.\"")
+    (license license:expat)))



reply via email to

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