mirror of
https://github.com/NixOS/nix.git
synced 2025-11-20 17:29:36 +01:00
SSL_CERT_FILE -> NIX_SSL_CERT_FILE
This prevents collisions with the "native" OpenSSL, in particular on
OS X.
Fixes #921.
(cherry picked from commit fb2dd32100)
This commit is contained in:
parent
8ca944e009
commit
41230dd463
6 changed files with 18 additions and 15 deletions
|
|
@ -73,9 +73,9 @@ if ! $nix/bin/nix-env -i "$nix"; then
|
|||
fi
|
||||
|
||||
# Install an SSL certificate bundle.
|
||||
if [ -z "$SSL_CERT_FILE" -o ! -f "$SSL_CERT_FILE" ]; then
|
||||
if [ -z "$NIX_SSL_CERT_FILE" -o ! -f "$NIX_SSL_CERT_FILE" ]; then
|
||||
$nix/bin/nix-env -i "$cacert"
|
||||
export SSL_CERT_FILE="$HOME/.nix-profile/etc/ssl/certs/ca-bundle.crt"
|
||||
export NIX_SSL_CERT_FILE="$HOME/.nix-profile/etc/ssl/certs/ca-bundle.crt"
|
||||
fi
|
||||
|
||||
# Subscribe the user to the Nixpkgs channel and fetch it.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue