diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2019-01-09 14:42:44 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-09 15:43:49 +0100 |
commit | b98662c53ac4f92214b50668a8a1c1e0871af86b (patch) | |
tree | 4fd0f38b568adca0fa636c46c5c97ec2af9131f9 /gnu | |
parent | cb03d6c6f39145c85350bd93d46941a2c178f4d3 (diff) | |
download | guix-b98662c53ac4f92214b50668a8a1c1e0871af86b.tar.gz |
gnu: Add r-reportr.
* gnu/packages/cran.scm (r-reportr): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 5fc0ee1a47..96e7c9c915 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -9113,3 +9113,26 @@ handling regular expressions, based on the Onigmo library. It offers first-class compiled regex objects, partial matching and function-based substitutions, amongst other features.") (license license:bsd-3))) + +(define-public r-reportr + (package + (name "r-reportr") + (version "1.3.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "reportr" version)) + (sha256 + (base32 + "0zynplxqvbmf23cm2rsz3wz2jx6mv55z94mn1k44ny3lx625cnpw")))) + (build-system r-build-system) + (propagated-inputs `(("r-ore" ,r-ore))) + (home-page "https://github.com/jonclayden/reportr") + (synopsis "General message and error reporting system") + (description + "This package provides a system for reporting messages, which offers +certain useful features over the standard R system, such as the incorporation +of output consolidation, message filtering, assertions, expression +substitution, automatic generation of stack traces for debugging, and +conditional reporting based on the current \"output level\".") + (license license:gpl2))) |