* Use md5sum instead of nix-hash.

svn path=/nixpkgs/trunk/; revision=584
gstqt5
Eelco Dolstra 2003-12-21 16:00:17 +00:00
parent 4b283d3de7
commit 38bc744a0b
1 changed files with 2 additions and 10 deletions

View File

@ -4,17 +4,9 @@
echo "downloading $url into $out..."
#prefetch=@prefix@/store/nix-prefetch-url-$md5
prefetch=/nix/store/nix-prefetch-url-$md5
if test -f "$prefetch"; then
echo "using prefetched $prefetch";
mv $prefetch $out || exit 1
else
wget --passive-ftp "$url" -O "$out" || exit 1
fi
wget --passive-ftp "$url" -O "$out" || exit 1
#actual=$(@bindir@/nix-hash --flat $out)
actual=$(/nix/bin/nix-hash --flat $out)
actual=$(md5sum -b $out | cut -c1-32)
if test "$actual" != "$md5"; then
echo "hash is $actual, expected $md5"
exit 1