diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-03-29 22:30:25 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-03-30 08:55:45 +0100 |
commit | 8d1990d495f115a79f6de0f455456b27a3344812 (patch) | |
tree | 058f8f88549f97dec347f3b4a4b1726b4c72d437 | |
parent | f562c90aa8883e1edf4f2e977522293640949d68 (diff) | |
download | patches-8d1990d495f115a79f6de0f455456b27a3344812.tar patches-8d1990d495f115a79f6de0f455456b27a3344812.tar.gz |
gnu: Add r-downloader.
* gnu/packages/cran.scm (r-downloader): New variable.
-rw-r--r-- | gnu/packages/cran.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index ad67ae85fc..40a0ed4759 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -13838,3 +13838,26 @@ comparisons of mean rank sums. This package is superseded by the novel PMCMRplus package. The PMCMR package is no longer maintained, but kept for compatibility of reverse depending packages for some time.") (license license:gpl3+))) + +(define-public r-downloader + (package + (name "r-downloader") + (version "0.4") + (source + (origin + (method url-fetch) + (uri (cran-uri "downloader" version)) + (sha256 + (base32 + "1axggnsc27zzgr7snf41j3zd1vp3nfpmq4zj4d01axc709dyg40q")))) + (build-system r-build-system) + (propagated-inputs + `(("r-digest" ,r-digest))) + (home-page "https://github.com/wch/downloader") + (synopsis "Download files over HTTP and HTTPS") + (description + "This package provides a wrapper for the @code{download.file} function, +making it possible to download files over HTTPS across platforms. The +@code{RCurl} package provides this functionality (and much more) but has +external dependencies. This package has is implemented purely in R.") + (license license:gpl2))) |