From 13d1a1da76a4c21ea3b5c64f1e6fe60e82831f71 Mon Sep 17 00:00:00 2001 From: Vicente Vera Parra Date: Sun, 13 Sep 2015 13:23:00 -0300 Subject: [PATCH 13/19] gnu: Add r-codetools. * gnu/packages/statistics.scm (r-codetools): 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 1265e4d..197fbb0 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -751,3 +751,20 @@ R using Literate Programming techniques.") "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 + "Code analysis tools for R.") + (license license:gpl3+))) -- 2.5.1