about summary refs log tree commit diff
path: root/pkgs/build-support/fetchfile/builder.sh
blob: 223b977bf14f73a0a0f3c0243d2d81e27741b042 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
. $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