From 64340dc03cf3a65ca635c636c64f5fb5a6bd1086 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 12 Sep 2011 17:01:43 +0000 Subject: [PATCH] * Set OPENSSL_X509_CERT_FILE. svn path=/nixos/trunk/; revision=29225 --- modules/security/ca.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/security/ca.nix b/modules/security/ca.nix index 0ac4f565bd6..456f91b81e2 100644 --- a/modules/security/ca.nix +++ b/modules/security/ca.nix @@ -19,6 +19,9 @@ with pkgs.lib; environment.shellInit = '' + export OPENSSL_X509_CERT_FILE=/etc/ssl/certs/ca-bundle.crt + + # !!! Remove the following as soon as OpenSSL 1.0.0e is the default. export CURL_CA_BUNDLE=/etc/ssl/certs/ca-bundle.crt export GIT_SSL_CAINFO=/etc/ssl/certs/ca-bundle.crt '';