me
/
guix
Archived
1
0
Fork 0

gnu: r-rcurl: Respect CURL_CA_BUNDLE variable.

Fixes <https://debbugs.gnu.org/31189>

* gnu/packages/statistics.scm (r-rcurl)[arguments]: Patch options to respect
CURL_CA_BUNDLE if no "cainfo" option is provided.
master
Ricardo Wurmus 2018-04-17 12:48:48 +02:00
parent 82bead7537
commit 8d3dda021a
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 12 additions and 0 deletions

View File

@ -2734,6 +2734,18 @@ engine (version 3.8.8.2) is included.")
"0l7qi45jxlf898n0jazabnam1yyczvqfdknd00bdirhhiplpd1sc"))))
(properties `((upstream-name . "RCurl")))
(build-system r-build-system)
(arguments
`(#:phases
(modify-phases %standard-phases
(add-after 'unpack 'respect-CURL_CA_BUNDLE
(lambda _
(substitute* "R/options.S"
(("\\.els = rev\\(merge\\(list\\(\\.\\.\\.\\), \\.opts\\)\\)" m)
(string-append "\
certs = Sys.getenv(\"CURL_CA_BUNDLE\")
if (certs != \"\") { .opts = merge.list(.opts, list(cainfo=certs)) }
" m)))
#t)))))
(inputs
`(("libcurl" ,curl)))
(propagated-inputs