guix-commits
[Top][All Lists]
Advanced

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

34/103: gnu: Add r-pkgload.


From: Ricardo Wurmus
Subject: 34/103: gnu: Add r-pkgload.
Date: Wed, 5 Sep 2018 14:03:45 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit e362be8e899707fa85e7ae3102cbb5013d51bb69
Author: Ricardo Wurmus <address@hidden>
Date:   Wed Sep 5 14:46:49 2018 +0200

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index ae51844..9d736d4 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -526,6 +526,33 @@ compilers needed to build R packages on various platforms 
and ensures the PATH
 is configured appropriately so R can use them.")
     (license license:gpl3)))
 
+(define-public r-pkgload
+  (package
+    (name "r-pkgload")
+    (version "1.0.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "pkgload" version))
+       (sha256
+        (base32
+         "1rjj229nq9fsl4ki4m75ybsavjgpqqhsr1zjzapwicsrxv6212px"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-desc" ,r-desc)
+       ("r-pkgbuild" ,r-pkgbuild)
+       ("r-rlang" ,r-rlang)
+       ("r-rprojroot" ,r-rprojroot)
+       ("r-rstudioapi" ,r-rstudioapi)
+       ("r-withr" ,r-withr)))
+    (home-page "https://github.com/r-lib/pkgload";)
+    (synopsis "Simulate package installation and attach")
+    (description
+     "This package simulates the process of installing a package and then
+attaching it.  This is a key part of the @code{devtools} package as it allows
+you to rapidly iterate while developing a package.")
+    (license license:gpl3)))
+
 (define-public r-rcpp
   (package
     (name "r-rcpp")



reply via email to

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