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

export PATH=/bin:/usr/bin

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
else
    @wget@ "$url" -O "$out" || exit 1
fi

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