lix/corepkgs/fetchurl/fetchurl.sh.in
Eelco Dolstra d551062ec4 * Scan for wget and use the full path in fetchurl.sh.
* Use nix-hash (not md5sum) in fetchurl.sh.
2003-08-06 09:35:05 +00:00

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