[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/10: gnu: Add r-curl.
From: |
Ricardo Wurmus |
Subject: |
01/10: gnu: Add r-curl. |
Date: |
Mon, 16 Nov 2015 10:11:07 +0000 |
rekado pushed a commit to branch master
in repository guix.
commit 5f4621de1fc4ef99b6dd9cbc978e010168de67dd
Author: Ricardo Wurmus <address@hidden>
Date: Tue Nov 10 15:55:51 2015 +0100
gnu: Add r-curl.
* gnu/packages/web.scm (r-curl): New variable.
---
gnu/packages/web.scm | 25 +++++++++++++++++++++++++
1 files changed, 25 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 6a47f3b..6c3329f 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -2978,3 +2978,28 @@ directory.")
various contexts including the R console, R Markdown documents, and Shiny web
applications.")
(license l:expat)))
+
+(define-public r-curl
+ (package
+ (name "r-curl")
+ (version "0.9.3")
+ (source (origin
+ (method url-fetch)
+ (uri (cran-uri "curl" version))
+ (sha256
+ (base32
+ "02p9s1jlk8dcbvn71ivn4xnrqh9dwqyhgn4s1fzcfmnmfxhl5gld"))))
+ (build-system r-build-system)
+ (inputs
+ `(("libcurl" ,curl)))
+ (home-page "https://github.com/jeroenooms/curl")
+ (synopsis "HTTP client for R")
+ (description
+ "The @code{curl()} and @code{curl_download()} functions provide highly
+configurable drop-in replacements for base @code{url()} and
address@hidden()} with better performance, support for encryption, gzip
+compression, authentication, and other @code{libcurl} goodies. The core of
+the package implements a framework for performing fully customized requests
+where data can be processed either in memory, on disk, or streaming via the
+callback or connection interfaces.")
+ (license l:expat)))
- branch master updated (f106b0e -> d6e2158), Ricardo Wurmus, 2015/11/16
- 09/10: gnu: Add r-rstudioapi., Ricardo Wurmus, 2015/11/16
- 02/10: gnu: Add r-xml2., Ricardo Wurmus, 2015/11/16
- 07/10: gnu: Add r-httr., Ricardo Wurmus, 2015/11/16
- 01/10: gnu: Add r-curl.,
Ricardo Wurmus <=
- 05/10: gnu: Add r-brew., Ricardo Wurmus, 2015/11/16
- 08/10: gnu: Add r-git2r., Ricardo Wurmus, 2015/11/16
- 10/10: gnu: Add r-devtools., Ricardo Wurmus, 2015/11/16
- 03/10: gnu: Add r-rversions., Ricardo Wurmus, 2015/11/16
- 06/10: gnu: Add r-roxygen2., Ricardo Wurmus, 2015/11/16
- 04/10: gnu: Add r-whisker., Ricardo Wurmus, 2015/11/16