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

echo "copying $pathname 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