guix-commits
[Top][All Lists]
Advanced

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

09/92: gnu: Add r-rcmdcheck.


From: Ricardo Wurmus
Subject: 09/92: gnu: Add r-rcmdcheck.
Date: Tue, 30 Oct 2018 16:48:43 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 5df4e27fec27d20ab2c17691b2c5ff15ce8fb066
Author: Ricardo Wurmus <address@hidden>
Date:   Sun Oct 28 19:22:13 2018 +0100

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 9e4ea6b..c6fab75 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -6879,3 +6879,34 @@ the code was copied over from @code{devtools}.")
      "This package provides a cross-platform solution to open files,
 directories or URLs with their associated programs.")
     (license license:expat)))
+
+(define-public r-rcmdcheck
+  (package
+    (name "r-rcmdcheck")
+    (version "1.3.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "rcmdcheck" version))
+       (sha256
+        (base32
+         "13liz9lmx9xgc0f7pjiz3sp8ygvazx2zslbiwz3p9fimfsx1yfsg"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-callr" ,r-callr)
+       ("r-cli" ,r-cli)
+       ("r-crayon" ,r-crayon)
+       ("r-desc" ,r-desc)
+       ("r-digest" ,r-digest)
+       ("r-pkgbuild" ,r-pkgbuild)
+       ("r-prettyunits" ,r-prettyunits)
+       ("r-r6" ,r-r6)
+       ("r-rprojroot" ,r-rprojroot)
+       ("r-withr" ,r-withr)
+       ("r-xopen" ,r-xopen)))
+    (home-page "https://github.com/r-Lib/rcmdcheck#readme";)
+    (synopsis "Run R CMD check from R and capture results")
+    (description
+     "Run @code{R CMD check} from R programmatically, and capture the results
+of the individual checks.")
+    (license license:expat)))



reply via email to

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