diff options
author | Wiktor Żelazny <wz@freeshell.de> | 2020-12-29 13:41:17 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-12-29 14:39:40 +0100 |
commit | c5092b6d0f621b66e749852a9b3611d1092d3839 (patch) | |
tree | 366bd27fbac6f7035f7199947735de6edab634f8 | |
parent | 1d77141f6d5004cf10d1f9ead53855f25a973847 (diff) | |
download | guix-c5092b6d0f621b66e749852a9b3611d1092d3839.tar.gz |
gnu: Add r-lgr.
* gnu/packages/cran.scm (r-lgr): New variable. Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
-rw-r--r-- | gnu/packages/cran.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 2af6aeb687..4e5b8b5bd6 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -25390,3 +25390,25 @@ use on EC2 instances, the package 'aws.ec2metadata' is suggested.") "This package provides a simple client package for the Amazon Web Services (AWS) Simple Storage Service (S3) REST API.") (license license:gpl2+))) + +(define-public r-lgr + (package + (name "r-lgr") + (version "0.4.1") + (source (origin + (method url-fetch) + (uri (cran-uri "lgr" version)) + (sha256 + (base32 + "196553hmni1ha9y6494f4g3ds0lwcl81v7k4r8wwap4a6acdrgd9")))) + (build-system r-build-system) + (propagated-inputs + `(("r-r6" ,r-r6))) + (home-page "https://s-fleck.github.io/lgr/") + (synopsis "Fully featured logging framework") + (description "This package offers a flexible, feature-rich yet +light-weight logging framework based on @code{R6} classes. It supports +hierarchical loggers, custom log levels, arbitrary data fields in log events, +logging to plaintext, JSON, (rotating) files, memory buffers, and databases, as +well as email and push notifications.") + (license license:expat))) |