gnu: Add r-codetools.

* gnu/packages/statistics.scm (r-codetools): New variable.
This commit is contained in:
Ricardo Wurmus 2017-03-12 00:13:27 +01:00
parent a27bfb8484
commit c1999c5910
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 18 additions and 0 deletions

View File

@ -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\".") Hubert, based on Kaufman and Rousseeuw (1990) \"Finding Groups in Data\".")
(license license:gpl2+))) (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 (define-public r-bit
(package (package
(name "r-bit") (name "r-bit")