2010-01-20 14:22:47 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
with pkgs.lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
config = {
|
|
|
|
|
2011-07-29 19:06:27 +00:00
|
|
|
environment.etc =
|
2013-08-17 08:35:56 +00:00
|
|
|
[
|
|
|
|
# Provide both Fedora and Ubuntu certificate locations for
|
|
|
|
# compatibility.
|
|
|
|
{ source = "${pkgs.cacert}/etc/ca-bundle.crt";
|
|
|
|
target = "ssl/certs/ca-bundle.crt"; # Same location as in Fedora
|
|
|
|
}
|
|
|
|
|
|
|
|
{ source = "${pkgs.cacert}/etc/ca-bundle.crt";
|
|
|
|
target = "ssl/certs/ca-certificates.crt"; # Same location as in Ubuntu
|
2011-07-29 19:06:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Backward compatibility; may remove at some point.
|
|
|
|
{ source = "${pkgs.cacert}/etc/ca-bundle.crt";
|
|
|
|
target = "ca-bundle.crt";
|
|
|
|
}
|
|
|
|
];
|
2010-01-20 14:22:47 +00:00
|
|
|
|
|
|
|
environment.shellInit =
|
|
|
|
''
|
2011-09-12 17:01:43 +00:00
|
|
|
export OPENSSL_X509_CERT_FILE=/etc/ssl/certs/ca-bundle.crt
|
2013-01-15 16:34:01 +00:00
|
|
|
|
|
|
|
export CURL_CA_BUNDLE=/etc/ssl/certs/ca-bundle.crt
|
|
|
|
export GIT_SSL_CAINFO=/etc/ssl/certs/ca-bundle.crt
|
2010-01-20 14:22:47 +00:00
|
|
|
'';
|
2011-09-14 18:20:50 +00:00
|
|
|
|
2010-01-20 14:22:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|