diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-05-04 07:13:05 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-05-04 07:27:44 +0200 |
commit | 7e3542600d7e80ad0fd3ac4882ed5d6659c71a89 (patch) | |
tree | f50298dce6d13951f2c34ca25589f858a8de7e4c | |
parent | 9afef02ebd7622ef084edfe2761e21c2fd0436e8 (diff) | |
download | guix-7e3542600d7e80ad0fd3ac4882ed5d6659c71a89.tar.gz |
gnu: r-curl: Update to 4.3.1.
* gnu/packages/cran.scm (r-curl): Update to 4.3.1. [native-inputs]: Add r-knitr.
-rw-r--r-- | gnu/packages/cran.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index cf37b4a791..2d42529927 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 |