From ebe1fc562203a8b884daae5c438820510002b642 Mon Sep 17 00:00:00 2001 From: Vicente Vera Parra Date: Mon, 14 Sep 2015 13:28:38 -0300 Subject: [PATCH 02/12] gnu: Add r-lazyeval. * gnu/packages/statistics.scm (r-lazyeval): New variable. --- gnu/packages/statistics.scm | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 0c60382..5137b1b 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -519,4 +519,21 @@ the pre and post conditions that your code should satisfy, while also producing friendly error messages so that your users know what they've done wrong.") (license license:gpl3+))) + +(define-public r-lazyeval + (package + (name "r-lazyeval") + (version "0.1.10") + (source (origin + (method url-fetch) + (uri (string-append "mirror://cran/src/contrib/lazyeval_" + version ".tar.gz")) + (sha256 + (base32 "02qfpn2fmy78vx4jxr7g7rhqzcm1kcivfwai7lbh0vvpawia0qwh")))) + (build-system r-build-system) + (home-page "https://github.com/hadley/lazyeval") + (synopsis "Lazy (non-standard) evaluation in R") + (description + "This package provides the tools necessary to do non-standard +evaluation (NSE) in R.") + (license license:gpl3+))) -- 2.5.2