Merge #144101: pidgin: use system certificates (into release-21.05)

This commit is contained in:
Vladimír Čunát 2021-11-01 12:24:03 +01:00
commit 01b884f222
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA
1 changed files with 2 additions and 0 deletions

View File

@ -9,6 +9,7 @@
, gnutls ? null , gnutls ? null
, libgcrypt ? null , libgcrypt ? null
, plugins, symlinkJoin , plugins, symlinkJoin
, cacert
}: }:
# FIXME: clean the mess around choosing the SSL library (nss by default) # FIXME: clean the mess around choosing the SSL library (nss by default)
@ -59,6 +60,7 @@ let unwrapped = stdenv.mkDerivation rec {
"--with-nss-includes=${nss.dev}/include/nss" "--with-nss-includes=${nss.dev}/include/nss"
"--with-nss-libs=${nss.out}/lib" "--with-nss-libs=${nss.out}/lib"
"--with-ncurses-headers=${ncurses.dev}/include" "--with-ncurses-headers=${ncurses.dev}/include"
"--with-system-ssl-certs=${cacert}/etc/ssl/certs"
"--disable-meanwhile" "--disable-meanwhile"
"--disable-nm" "--disable-nm"
"--disable-tcl" "--disable-tcl"