binary download: Use $NIX_CURL_FLAGS

As in 5c0816567d/pkgs/build-support/fetchurl/builder.sh (L17)
This commit is contained in:
wmertens 2014-10-14 15:36:14 +02:00
parent d04e1ff12a
commit bc4795919a
1 changed files with 1 additions and 1 deletions

View File

@ -546,7 +546,7 @@ sub downloadBinary {
die if $requireSignedBinaryCaches && !defined $info->{signedBy};
print STDERR "\n*** Downloading $url ", ($requireSignedBinaryCaches ? "(signed by $info->{signedBy}) " : ""), "to $storePath...\n";
checkURL $url;
if (system("$Nix::Config::curl --fail --location --insecure --connect-timeout $curlConnectTimeout '$url' $decompressor | $Nix::Config::binDir/nix-store --restore $destPath") != 0) {
if (system("$Nix::Config::curl --fail --location --insecure --connect-timeout $curlConnectTimeout $NIX_CURL_FLAGS '$url' $decompressor | $Nix::Config::binDir/nix-store --restore $destPath") != 0) {
warn "download of $url failed" . ($! ? ": $!" : "") . "\n";
next;
}