ren...@openmailbox.org skribis: > + `(#:configure-flags > + '("--with-ca-certificates=/etc/ssl/certs/ca-certificates.crt")
AFAICS glib-networking uses GnuTLS, for which we already had such a setting (except that it can read all the .crt files from /etc/ssl/certs, not just one bundle.) > + (modify-phases %standard-phases > + (add-before 'check 'use-empty-ssl-cert-file > + (lambda _ > + ; Search for ca-certificates.crt files > + ; during the check phase. > + (setenv "SSL_CERT_FILE" "/dev/null") Does this really have an effect? This is the environment variable used by OpenSSL, but not GnuTLS. Otherwise LGTM. Thanks, Ludo’.