diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-10-28 19:21:55 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-10-30 21:33:56 +0100 |
commit | cbc8e6dd4aecdc92c823b623b76b365cec9a364d (patch) | |
tree | 92402e281078991b3b1d497f86f458474caa2424 /gnu | |
parent | 993426244e19738d435a3c37a38ca60e92b45cf2 (diff) | |
download | patches-cbc8e6dd4aecdc92c823b623b76b365cec9a364d.tar patches-cbc8e6dd4aecdc92c823b623b76b365cec9a364d.tar.gz |
gnu: Add r-remotes.
* gnu/packages/cran.scm (r-remotes): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 8b12dd0214..645a22abf0 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -6837,3 +6837,24 @@ Rcpp, RStudio projects, and more.") current R session. It is similar to @code{utils::sessionInfo()}, but includes more information about packages, and where they were installed from.") (license license:gpl2))) + +(define-public r-remotes + (package + (name "r-remotes") + (version "2.0.1") + (source + (origin + (method url-fetch) + (uri (cran-uri "remotes" version)) + (sha256 + (base32 + "1xkzlciv68jyf4j8hads0i47nxbgsy1kv7258c6zzyq66z0amhss")))) + (build-system r-build-system) + (home-page "https://github.com/r-lib/remotes#readme") + (synopsis "R package installation from remote repositories") + (description + "Download and install R packages stored in GitHub, BitBucket, or plain +subversion or git repositories. This package is a lightweight replacement of +the @code{install_*} functions in the @code{devtools} package. Indeed most of +the code was copied over from @code{devtools}.") + (license license:gpl2+))) |