guix-commits
[Top][All Lists]
Advanced

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

05/92: gnu: Add r-usethis.


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

rekado pushed a commit to branch master
in repository guix.

commit efefd3ec42be0125f71066995b94ab8c6a26cde4
Author: Ricardo Wurmus <address@hidden>
Date:   Sun Oct 28 19:21:37 2018 +0100

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 74e8367..00aa963 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -6779,3 +6779,38 @@ operations, built on top of the libuv C library.")
 when building command line applications.  They fall back to alternatives on
 terminals that do not support Unicode.")
     (license license:expat)))
+
+(define-public r-usethis
+  (package
+    (name "r-usethis")
+    (version "1.4.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "usethis" version))
+       (sha256
+        (base32
+         "1gadckx3sxz9gxvpkprj9x7zcgg2nz5m4q0vi76ya9li1v03rwwn"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-clipr" ,r-clipr)
+       ("r-clisymbols" ,r-clisymbols)
+       ("r-crayon" ,r-crayon)
+       ("r-curl" ,r-curl)
+       ("r-desc" ,r-desc)
+       ("r-fs" ,r-fs)
+       ("r-gh" ,r-gh)
+       ("r-git2r" ,r-git2r)
+       ("r-glue" ,r-glue)
+       ("r-rlang" ,r-rlang)
+       ("r-rprojroot" ,r-rprojroot)
+       ("r-rstudioapi" ,r-rstudioapi)
+       ("r-whisker" ,r-whisker)))
+    (home-page "https://github.com/r-lib/usethis";)
+    (synopsis "Automate R package and project setup")
+    (description
+     "This package helps you to automate R package and project setup tasks
+that are otherwise performed manually.  This includes setting up unit testing,
+test coverage, continuous integration, Git, GitHub integration, licenses,
+Rcpp, RStudio projects, and more.")
+    (license license:gpl3)))



reply via email to

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