guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/13: gnu: Add r-chk.


From: guix-commits
Subject: 04/13: gnu: Add r-chk.
Date: Tue, 7 Sep 2021 06:11:29 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit e658cde524066e08109bb77c82abdfa240213b10
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue Sep 7 12:00:46 2021 +0200

    gnu: Add r-chk.
    
    * gnu/packages/cran.scm (r-chk): New variable.
---
 gnu/packages/cran.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index b12e8b3..45d162d 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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]