diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-04-06T08·18+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-04-06T08·18+0000 |
commit | 03f1d1ecb5ef69c8c065c83373f9f9f749995c50 (patch) | |
tree | 015504d426363cf19aea03589281593cf7f31a20 /corepkgs/fetchurl/builder.sh.in | |
parent | 59b94ee18ac0cba5c7b261ee72550a4d3db0acb5 (diff) |
* Switched from wget to curl.
* Made the dependencies on bzip2 and the shell explicit.
Diffstat (limited to 'corepkgs/fetchurl/builder.sh.in')
-rw-r--r-- | corepkgs/fetchurl/builder.sh.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/corepkgs/fetchurl/builder.sh.in b/corepkgs/fetchurl/builder.sh.in index a6cc6993028a..4379b423dbae 100644 --- a/corepkgs/fetchurl/builder.sh.in +++ b/corepkgs/fetchurl/builder.sh.in @@ -1,15 +1,15 @@ -#! /bin/sh +#! @shell@ -e export PATH=/bin:/usr/bin -echo "downloading $url into $out..." +echo "downloading $url into $out" prefetch=@prefix@/store/nix-prefetch-url-$md5 if test -f "$prefetch"; then echo "using prefetched $prefetch"; - mv $prefetch $out || exit 1 + mv $prefetch $out else - @wget@ --passive-ftp "$url" -O "$out" || exit 1 + @curl@ --fail --location --max-redirs 20 "$url" > "$out" fi actual=$(@bindir@/nix-hash --flat $out) |