rekado pushed a commit to branch master
in repository guix.
commit 7e3542600d7e80ad0fd3ac4882ed5d6659c71a89
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Tue May 4 07:13:05 2021 +0200
gnu: r-curl: Update to 4.3.1.
* gnu/packages/cran.scm (r-curl): Update to 4.3.1.
[native-inputs]: Add r-knitr.
---
gnu/packages/cran.scm | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index cf37b4a..2d42529 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -1390,13 +1390,13 @@ LaTeX.")
(define-public r-curl
(package
(name "r-curl")
- (version "4.3")
+ (version "4.3.1")
(source (origin
(method url-fetch)
(uri (cran-uri "curl" version))
(sha256
(base32
- "1nrf6md41b37j424y6rvifdj9zb3j14f60fj7q71k9jhpf2x81kl"))))
+ "0qpzbzd5xvihqvp9akkvd8237i1lmphmm5q8a4cj3wfx382cnri2"))))
(build-system r-build-system)
(arguments
`(#:phases
@@ -1414,13 +1414,13 @@ LaTeX.")
(string-append "\
const char *_ca_bundle = getenv(\"CURL_CA_BUNDLE\");
if(_ca_bundle != NULL) { curl_easy_setopt(handle, CURLOPT_CAINFO, _ca_bundle);
}
-" m)))
- #t)))))
+" m))))))))
(inputs
`(("libcurl" ,curl)
("zlib" ,zlib)))
(native-inputs
- `(("pkg-config" ,pkg-config)))
+ `(("pkg-config" ,pkg-config)
+ ("r-knitr" ,r-knitr)))
(home-page "https://github.com/jeroenooms/curl")
(synopsis "HTTP client for R")
(description