gnu: Add r-trycatchlog.

* gnu/packages/cran.scm (r-trycatchlog): New variable.

Change-Id: I092c8ada3e139e21e07f000041a5e2fc345af977
This commit is contained in:
Ricardo Wurmus 2024-04-09 18:45:23 +02:00
parent db49eed2d3
commit 525beb6c37
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -9683,6 +9683,27 @@ (define-public r-truncdist
packages are automatically available for truncation.")
(license license:gpl2+)))
(define-public r-trycatchlog
(package
(name "r-trycatchlog")
(version "1.3.1")
(source
(origin
(method url-fetch)
(uri (cran-uri "tryCatchLog" version))
(sha256
(base32 "0k40a48qzwmardjnkf0h5s5zryivzvdanz61kxdqdfqlil19ma0d"))))
(properties `((upstream-name . "tryCatchLog")))
(build-system r-build-system)
(native-inputs (list r-knitr))
(home-page "https://github.com/aryoda/tryCatchLog")
(synopsis "Advanced tryCatch and try functions")
(description
"This package provides advanced @code{tryCatch} and @code{try} functions
for better error handling (logging, stack trace with source code references
and support for post-mortem analysis via dump files).")
(license license:gpl3)))
(define-public r-rsolnp
(package
(name "r-rsolnp")