about summary refs log tree commit diff
path: root/corepkgs/fetchurl/builder.sh.in
blob: aaba65d6d26c3ce71ebc4c639db4e37337e978db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#! @shell@ -e

export PATH=/bin:/usr/bin

echo "downloading $url into $out"

prefetch=@storedir@/nix-prefetch-url-$outputHash
if test -f "$prefetch"; then
    echo "using prefetched $prefetch";
    mv $prefetch $out
else
    @curl@ --fail --location --max-redirs 20 "$url" > "$out"
fi