blob: 7e876a25e2aaaf42b1d19ce44b2322a46163506f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#! /bin/sh
echo "downloading $url into $out..."
@wget@ "$url" -O "$out" || exit 1
actual=$(@bindir@/nix-hash --flat $out)
if test "$actual" != "$md5"; then
echo "hash is $actual, expected $md5"
exit 1
fi
|