From dc138d6d69d3f1e0b4f5d22f5be049fe61a99234 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Wed, 13 Dec 2017 07:09:02 +0100 Subject: gnu: curl: Add a search path for CURL_CA_BUNDLE. * gnu/packages/curl.scm (curl)[native-search-paths]: New field. * gnu/packages/image-viewers.scm (feh)[native-search-paths]: Inherit. --- gnu/packages/curl.scm | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'gnu/packages/curl.scm') diff --git a/gnu/packages/curl.scm b/gnu/packages/curl.scm index 2c28f3d28e..b9d4e7d38b 100644 --- a/gnu/packages/curl.scm +++ b/gnu/packages/curl.scm @@ -66,6 +66,15 @@ ("groff" ,groff) ("pkg-config" ,pkg-config) ("python" ,python-2))) + (native-search-paths + ;; Note: This search path is respected by the `curl` command-line tool only. + ;; Ideally we would bake this into libcurl itself so other users can benefit, + ;; but it's not supported upstream due to thread safety concerns. + (list (search-path-specification + (variable "CURL_CA_BUNDLE") + (file-type 'regular) + (separator #f) ;single entry + (files '("etc/ssl/certs/ca-certificates.crt"))))) (arguments `(#:configure-flags '("--with-gnutls" "--with-gssapi") ;; Add a phase to patch '/bin/sh' occurances in tests/runtests.pl -- cgit v1.2.3