Binary tarball: Automatically fetch the Nixpkgs channel

This commit is contained in:
Eelco Dolstra 2014-02-10 10:50:29 +01:00
parent b632153ebd
commit c5839752b9
1 changed files with 7 additions and 1 deletions

View File

@ -15,6 +15,12 @@ if ! $nix/bin/nix-env -i @nix@; then
exit 1
fi
# Subscribe the user to the Nixpkgs channel and fetch it.
if ! $nix/bin/nix-channel --list | grep -q "^nixpkgs "; then
$nix/bin/nix-channel --add http://nixos.org/channels/nixpkgs-unstable
fi
$nix/bin/nix-channel --update nixpkgs
# Add nix.sh to the shell's profile.d directory.
p=$NIX_LINK/etc/profile.d/nix.sh
@ -31,4 +37,4 @@ variables are set, please add the line
to your shell profile (e.g. ~/.profile).
EOF
fi
fi