diff options
author | Vicente Vera Parra <vicentemvp@gmail.com> | 2015-09-15 14:11:12 -0300 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2015-09-15 21:09:02 +0200 |
commit | ed6094fc77267b14510e6fb589fca663e7e1ce04 (patch) | |
tree | c8f198919eea4fa076bc2cb2d9bdb4d5d2ad7c27 /gnu | |
parent | 62e4cc5aa19e4c64fc244e3c6724d8e4d97f8599 (diff) | |
download | patches-ed6094fc77267b14510e6fb589fca663e7e1ce04.tar patches-ed6094fc77267b14510e6fb589fca663e7e1ce04.tar.gz |
gnu: Add r-assertthat.
* gnu/packages/statistics.scm (r-assertthat): 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 29cd34a4f3..1c3d696028 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -1,5 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net> +;;; Copyright © 2015 Vicente Vera Parra <vicentemvp@gmail.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -498,3 +499,24 @@ by step from multiple data sources. It also implements a sophisticated multidimensional conditioning system and a consistent interface to map data to aesthetic attributes.") (license license:gpl2+))) + +(define-public r-assertthat + (package + (name "r-assertthat") + (version "0.1") + (source (origin + (method url-fetch) + (uri (string-append "mirror://cran/src/contrib/assertthat_" + version ".tar.gz")) + (sha256 + (base32 + "0dwsqajyglfscqilj843qfqn1ndbqpswa7b4l1d633qjk9d68qqk")))) + (build-system r-build-system) + (home-page "https://github.com/hadley/assertthat") + (synopsis "Easy pre and post assertions") + (description + "Assertthat is an extension to stopifnot() that makes it easy to declare +the pre and post conditions that your code should satisfy, while also +producing friendly error messages so that your users know what they've done +wrong.") + (license license:gpl3+))) |