rekado pushed a commit to branch master
in repository guix.
commit c1999c591023a4dfce69304d986b387a116663a2
Author: Ricardo Wurmus <[email protected]>
Date: Sun Mar 12 00:13:27 2017 +0100
gnu: Add r-codetools.
* gnu/packages/statistics.scm (r-codetools): New variable.
---
gnu/packages/statistics.scm | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 1492dcc..cbf5c14 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -304,6 +304,24 @@ extended version of the original from Peter Rousseeuw,
Anja Struyf and Mia
Hubert, based on Kaufman and Rousseeuw (1990) \"Finding Groups in Data\".")
(license license:gpl2+)))
+(define-public r-codetools
+ (package
+ (name "r-codetools")
+ (version "0.2-15")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "codetools" version))
+ (sha256
+ (base32
+ "0h7sjmvvsi35041jp47cxhsqzgf1y8jrw6fxii7n26i8g7nrh1sf"))))
+ (build-system r-build-system)
+ (home-page "http://cran.r-project.org/web/packages/codetools")
+ (synopsis "Code analysis tools for R")
+ (description "This package provides code analysis tools for R.")
+ ;; Any version of the GPL.
+ (license (list license:gpl2+ license:gpl3+))))
+
(define-public r-bit
(package
(name "r-bit")