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

export PATH=/bin:/usr/bin

echo "downloading $url into $out"

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

actual=$(@bindir@/nix-hash --flat $out)
if test "$actual" != "$md5"; then
    echo "hash is $actual, expected $md5"
    exit 1
fi