* gnu/packages/gnunet.scm (gnurl)[arguments]: Add "--with-ca-bundle" configure 
flag.
[arguments]: configure-flags: Use list.
[arguments]: Add "nss-certs" to native-inputs.
---
 gnu/packages/gnunet.scm | 31 +++++++++++++++++++------------
 1 file changed, 19 insertions(+), 12 deletions(-)

diff --git a/gnu/packages/gnunet.scm b/gnu/packages/gnunet.scm
index 27e1ffb4e..451293c9f 100644
--- a/gnu/packages/gnunet.scm
+++ b/gnu/packages/gnunet.scm
@@ -5,7 +5,7 @@
 ;;; Copyright © 2015 Efraim Flashner <efr...@flashner.co.il>
 ;;; Copyright © 2016 Ricardo Wurmus <rek...@elephly.net>
 ;;; Copyright © 2016 Mark H Weaver <m...@netris.org>
-;;; Copyright © 2016 ng0 <n...@libertad.pw>
+;;; Copyright © 2016, 2017 ng0 <n...@libertad.pw>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -27,6 +27,7 @@
   #:use-module (gnu packages file)
   #:use-module (gnu packages aidc)
   #:use-module (gnu packages autotools)
+  #:use-module (gnu packages certs)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages curl)
   #:use-module (gnu packages gettext)
@@ -184,20 +185,26 @@ and support for SSL3 and TLS.")
       ("libtool" ,libtool)
       ("groff" ,groff)
       ("perl" ,perl)
+      ("nss-certs" ,nss-certs)
       ("pkg-config" ,pkg-config)
       ("python" ,python-2)))
    (arguments
-    `(#:configure-flags '("--enable-ipv6" "--with-gnutls" "--without-libssh2"
-                          "--without-libmetalink" "--without-winidn"
-                          "--without-librtmp" "--without-nghttp2"
-                          "--without-nss" "--without-cyassl"
-                          "--without-polarssl" "--without-ssl"
-                          "--without-winssl" "--without-darwinssl"
-                          "--disable-sspi" "--disable-ntlm-wb"
-                          "--disable-ldap" "--disable-rtsp" "--disable-dict"
-                          "--disable-telnet" "--disable-tftp" "--disable-pop3"
-                          "--disable-imap" "--disable-smtp" "--disable-gopher"
-                          "--disable-file" "--disable-ftp" "--disable-smb")
+    `(#:configure-flags (list
+                         "--enable-ipv6" "--with-gnutls" "--without-libssh2"
+                         "--without-libmetalink" "--without-winidn"
+                         "--without-librtmp" "--without-nghttp2"
+                         "--without-nss" "--without-cyassl"
+                         "--without-polarssl" "--without-ssl"
+                         "--without-winssl" "--without-darwinssl"
+                         "--disable-sspi" "--disable-ntlm-wb"
+                         "--disable-ldap" "--disable-rtsp" "--disable-dict"
+                         "--disable-telnet" "--disable-tftp" "--disable-pop3"
+                         "--disable-imap" "--disable-smtp" "--disable-gopher"
+                         "--disable-file" "--disable-ftp" "--disable-smb"
+                         (string-append
+                          "--with-ca-bundle="
+                          (string-append (assoc-ref %build-inputs "nss-certs")
+                                         
"/etc/ssl/certs/ca-certificates.crt")))
       #:test-target "test"
       #:parallel-tests? #f
       #:phases
-- 
2.11.0


Reply via email to