me
/
guix
Archived
1
0
Fork 0

gnu: r-rcurl: Update to 1.98-1.6.

* gnu/packages/statistics.scm (r-rcurl): Update to 1.98-1.6.
[source]: Take from CRAN.
[arguments]: Remove trailing #T from build phase.
[native-inputs]: Add libxml2.
[inputs]: Use new input list style.
master
Ricardo Wurmus 2022-05-28 09:59:33 +02:00
parent 2e2fed31a3
commit 02c8c3ffbd
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 7 additions and 8 deletions

View File

@ -2976,15 +2976,13 @@ engine (version 3.8.8.2) is included.")
(define-public r-rcurl (define-public r-rcurl
(package (package
(name "r-rcurl") (name "r-rcurl")
(version "1.95-0.1.2") (version "1.98-1.6")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append "https://www.bioconductor.org/packages/" (uri (cran-uri "RCurl" version))
"release/extra/src/"
"contrib/RCurl_" version ".tar.gz"))
(sha256 (sha256
(base32 (base32
"0l7qi45jxlf898n0jazabnam1yyczvqfdknd00bdirhhiplpd1sc")))) "18nif4phr5vfhri07mnchiym0qfm31ak9nxvb2v9ac84mij6idbc"))))
(properties `((upstream-name . "RCurl"))) (properties `((upstream-name . "RCurl")))
(build-system r-build-system) (build-system r-build-system)
(arguments (arguments
@ -2997,10 +2995,11 @@ engine (version 3.8.8.2) is included.")
(string-append "\ (string-append "\
certs = Sys.getenv(\"CURL_CA_BUNDLE\") certs = Sys.getenv(\"CURL_CA_BUNDLE\")
if (certs != \"\") { .opts = merge.list(.opts, list(cainfo=certs)) } if (certs != \"\") { .opts = merge.list(.opts, list(cainfo=certs)) }
" m))) " m))))))))
#t))))) (native-inputs
(list libxml2))
(inputs (inputs
`(("libcurl" ,curl))) (list curl))
(propagated-inputs (propagated-inputs
(list r-bitops)) (list r-bitops))
(home-page "http://www.omegahat.net/RCurl") (home-page "http://www.omegahat.net/RCurl")