688fff92de
- clone of fetchurl that invokes a given chmod to workaround problems with inappropriate file permissions (executable files are not allowed by Nix) - cygpath tool to determine the full windows path of a cygwin tool. This tool is used to give fetchurl the windows path to chmod. - native curl.exe - gcc-wrapper no longer used - all-packages.nix: allows stdenv to specify fetchurl. svn path=/nixpkgs/trunk/; revision=6140
37 lines
736 B
Bash
Executable file
37 lines
736 B
Bash
Executable file
if test -z "$out"; then
|
|
stdenv="$STDENV"
|
|
url="$URL"
|
|
id="$ID"
|
|
outputHashAlgo="$OUTPUTHASHALGO"
|
|
outputHash="$OUTPUTHASH"
|
|
chmod=$CHMOD
|
|
curl=$CURL
|
|
fi
|
|
|
|
source $stdenv/setup
|
|
|
|
if test -z "$out"; then
|
|
out="$OUT"
|
|
fi
|
|
|
|
header "downloading $out from $url"
|
|
echo "curl is $curl"
|
|
$curl --fail --location --max-redirs 20 "$url" > "$out"
|
|
|
|
if test "$NIX_OUTPUT_CHECKED" != "1"; then
|
|
if test "$outputHashAlgo" != "md5"; then
|
|
echo "hashes other than md5 are unsupported in Nix <= 0.7, upgrade to Nix 0.8"
|
|
exit 1
|
|
fi
|
|
actual=$(md5sum -b "$out" | cut -c1-32)
|
|
if test "$actual" != "$id"; then
|
|
echo "hash is $actual, expected $id"
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
echo "chmod is $chmod"
|
|
$chmod a-x $out
|
|
|
|
stopNest
|