gnu: Add r-chk.

* gnu/packages/cran.scm (r-chk): New variable.
This commit is contained in:
Ricardo Wurmus 2021-09-07 12:00:46 +02:00
parent af81591375
commit e658cde524
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -11768,6 +11768,31 @@ (define-public r-rslurm
parallel calculations across cluster nodes.")
(license license:gpl3)))
(define-public r-chk
(package
(name "r-chk")
(version "0.7.0")
(source
(origin
(method url-fetch)
(uri (cran-uri "chk" version))
(sha256
(base32
"1fxsxgvd08lkb6amjgs4x48dhqr046mmjngjfgy2ya9cl2shd7ls"))))
(properties `((upstream-name . "chk")))
(build-system r-build-system)
(propagated-inputs
`(("r-lifecycle" ,r-lifecycle)
("r-rlang" ,r-rlang)))
(native-inputs `(("r-knitr" ,r-knitr)))
(home-page "https://github.com/poissonconsulting/chk")
(synopsis "Check user-supplied function arguments")
(description
"This is a package for developers to check user-supplied function
arguments. It is designed to be simple, fast and customizable. Error
messages follow the tidyverse style guide.")
(license license:expat)))
(define-public r-weights
(package
(name "r-weights")