From 0b399d8e49e064842265c0b5f6b4e0346ad097eb Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 15 Jan 2013 17:34:01 +0100 Subject: [PATCH] Revert "Remove obsolete environment variables" This reverts commit ac8080b83c8bcaaadd35f7430ccc0add0eade15a. --- modules/security/ca.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/security/ca.nix b/modules/security/ca.nix index 378fe4e691db..ef33298f19e2 100644 --- a/modules/security/ca.nix +++ b/modules/security/ca.nix @@ -20,6 +20,10 @@ 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 ''; };