diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-09-07 12:00:46 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-09-07 12:00:46 +0200 |
commit | e658cde524066e08109bb77c82abdfa240213b10 (patch) | |
tree | f62adb5507ab535db3c83a435768c9b96a29cc5e | |
parent | af81591375ac5cc58fbf619a0eaa80a4245e1a00 (diff) |
gnu: Add r-chk.
* gnu/packages/cran.scm (r-chk): New variable.
-rw-r--r-- | gnu/packages/cran.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index b12e8b30e8..45d162dbfd 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -11768,6 +11768,31 @@ Slurm workload manager, in part by automating the division of embarrassingly 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") |