blob: dc92c7ee50d83e582174a77a63dd637fe2841c0e (
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
|