diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-07-30T20·39-0400 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-07-30T20·39-0400 |
commit | 9de6d10d112665ba1c6d807dd3950ed4c43a4404 (patch) | |
tree | 2f9fbded84136decf01c0f707371731e3c1bf1b6 /scripts/download-from-binary-cache.pl.in | |
parent | ab42bf1dab026d10b74e857a76feff475ae8a162 (diff) |
Get rid of $NIX_BINARY_CACHES
You can use ‘--option binary-caches URLs’ instead.
Diffstat (limited to 'scripts/download-from-binary-cache.pl.in')
-rw-r--r-- | scripts/download-from-binary-cache.pl.in | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/scripts/download-from-binary-cache.pl.in b/scripts/download-from-binary-cache.pl.in index 6482b9c18391..7e203ec9d057 100644 --- a/scripts/download-from-binary-cache.pl.in +++ b/scripts/download-from-binary-cache.pl.in @@ -166,9 +166,8 @@ sub getAvailableCaches { $gotCaches = 1; my @urls = map { s/\/+$//; $_ } split(/ /, - ($ENV{"NIX_BINARY_CACHES"} - // $Nix::Config::config{"binary-caches"} - // ($Nix::Config::storeDir eq "/nix/store" ? "http://nixos.org/binary-cache" : ""))); + $Nix::Config::config{"binary-caches"} + // ($Nix::Config::storeDir eq "/nix/store" ? "http://nixos.org/binary-cache" : "")); foreach my $url (@urls) { |