d551062ec4
* Use nix-hash (not md5sum) in fetchurl.sh.
11 lines
216 B
Bash
11 lines
216 B
Bash
#! /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
|