* Put the CA certificate bundle in /etc/ssl/certs because Qt expects

them there.

svn path=/nixos/trunk/; revision=28009
This commit is contained in:
Eelco Dolstra 2011-07-29 19:06:27 +00:00
parent d0ad799582
commit 7d69a82b55

View File

@ -6,15 +6,21 @@ with pkgs.lib;
config = { config = {
environment.etc = singleton environment.etc =
[ { source = "${pkgs.cacert}/etc/ca-bundle.crt";
target = "ssl/certs/ca-bundle.crt";
}
# Backward compatibility; may remove at some point.
{ source = "${pkgs.cacert}/etc/ca-bundle.crt"; { source = "${pkgs.cacert}/etc/ca-bundle.crt";
target = "ca-bundle.crt"; target = "ca-bundle.crt";
}; }
];
environment.shellInit = environment.shellInit =
'' ''
export CURL_CA_BUNDLE=/etc/ca-bundle.crt export CURL_CA_BUNDLE=/etc/ssl/certs/ca-bundle.crt
export GIT_SSL_CAINFO=/etc/ca-bundle.crt export GIT_SSL_CAINFO=/etc/ssl/certs/ca-bundle.crt
''; '';
}; };