summary refs log tree commit diff
path: root/pkgs/build-support/fetchfile/builder.sh
blob: b38e1927809a84637a66dc132101f20252c59c57 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
source $stdenv/setup

echo "copying $url into $out..."

cp "$pathname" "$out" || exit 1

actual=$(md5sum -b $out | cut -c1-32)
if test "$actual" != "$md5"; then
    echo "hash is $actual, expected $md5"
    exit 1
fi