* md5' -> id' in compatibility mode.

svn path=/nixpkgs/trunk/; revision=2273
This commit is contained in:
Eelco Dolstra 2005-02-22 15:34:58 +00:00
parent 4eba4a211e
commit 44a1f60787

View file

@ -5,9 +5,13 @@ header "downloading $out from $url"
curl --fail --location --max-redirs 20 "$url" > "$out"
if test "$NIX_OUTPUT_CHECKED" != "1"; then
if test "$outputHashAlgo" != "md5"; then
echo "hashes other than md5 are unsupported in Nix <= 0.7, upgrade to Nix 0.8"
exit 1
fi
actual=$(md5sum -b "$out" | cut -c1-32)
if test "$actual" != "$md5"; then
echo "hash is $actual, expected $md5"
if test "$actual" != "$id"; then
echo "hash is $actual, expected $id"
exit 1
fi
fi