1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 23:03:53 -04:00

install-nix-from-closure.sh: Use https channel if possible

This commit is contained in:
Eelco Dolstra 2014-08-07 15:36:54 +02:00
parent 98873ff7de
commit 4a198dae74

View file

@ -73,8 +73,12 @@ fi
# Subscribe the user to the Nixpkgs channel and fetch it. # Subscribe the user to the Nixpkgs channel and fetch it.
if ! $nix/bin/nix-channel --list | grep -q "^nixpkgs "; then if ! $nix/bin/nix-channel --list | grep -q "^nixpkgs "; then
if [ -n "$SSL_CERT_FILE" ]; then
$nix/bin/nix-channel --add https://nixos.org/channels/nixpkgs-unstable
else
$nix/bin/nix-channel --add http://nixos.org/channels/nixpkgs-unstable $nix/bin/nix-channel --add http://nixos.org/channels/nixpkgs-unstable
fi fi
fi
$nix/bin/nix-channel --update nixpkgs $nix/bin/nix-channel --update nixpkgs
# Install an SSL certificate bundle. # Install an SSL certificate bundle.