diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2016-09-21 22:45:29 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2016-09-26 03:24:59 +0200 |
commit | 929d4aaea10e899479958eff6bc6c5adb34745fd (patch) | |
tree | 3d28562d7fc5f465dd914a65f6b0916c54e9d813 /gnu | |
parent | 0d90462fa322201e3a59621e959afa9d5aaf0173 (diff) |
gnu: Add r-checkmate.
* gnu/packages/statistics.scm (r-checkmate): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/statistics.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index c3dadbdf60..1e6f3fd3ee 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -1633,6 +1633,28 @@ can make use of the new functions without worrying about the minimum required R version.") (license license:gpl2+))) +(define-public r-checkmate + (package + (name "r-checkmate") + (version "1.8.1") + (source + (origin + (method url-fetch) + (uri (cran-uri "checkmate" version)) + (sha256 + (base32 + "1nqyi58jl33af82y8kw8iy9xbna2080y1khhy90kf6lim6q74024")))) + (build-system r-build-system) + (propagated-inputs + `(("r-backports" ,r-backports))) + (home-page "https://github.com/mllg/checkmate") + (synopsis "Fast and versatile argument checks") + (description + "This package provides tests and assertions to perform frequent argument +checks. A substantial part of the package was written in C to minimize any +worries about execution time overhead.") + (license license:bsd-3))) + (define-public r-brew (package (name "r-brew") |