From e7acdd3768577c18b2f2141f509c0eb7f244cdf3 Mon Sep 17 00:00:00 2001 From: Vicente Vera Parra Date: Tue, 15 Sep 2015 14:21:19 -0300 Subject: [PATCH 13/19] gnu: Add r-codetools. * gnu/packages/statistics.scm (r-codetools): New variable. --- gnu/packages/statistics.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 6ec76e9..e88d2f3 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -783,3 +783,23 @@ generation in R using Literate Programming techniques.") "This package provides infrastructure to accurately measure and compare the execution time of R expressions.") (license license:bsd-2))) + +(define-public r-codetools + (package + (name "r-codetools") + (version "0.2-14") + (source (origin + (method url-fetch) + (uri (string-append "mirror://cran/src/contrib/codetools_" + version ".tar.gz")) + (sha256 + (base32 + "0y9r4m2b8xgavr89sc179knzwpz54xljbc1dinpq2q07i4xn0397")))) + (build-system r-build-system) + (home-page + "https://cran.r-project.org/web/packages/codetools/index.html") + (synopsis + "Code analysis tools for R") + (description + "This package provides code analysis tools for R.") + (license license:gpl3+))) -- 2.5.2