2005-12-05 15:11:09 +01:00
|
|
|
source $stdenv/setup
|
2003-11-25 18:38:48 +01:00
|
|
|
|
2004-04-14 12:55:33 +02:00
|
|
|
header "exporting $url (r$rev) into $out"
|
2003-11-25 18:38:48 +01:00
|
|
|
|
2006-05-30 14:43:45 +02:00
|
|
|
# Pipe the "p" character into Subversion to force it to accept the
|
|
|
|
# server's certificate. This is perfectly safe: we don't care
|
|
|
|
# whether the server is being spoofed --- only the cryptographic
|
|
|
|
# hash of the output matters.
|
|
|
|
echo 'p' | svn export -r "$rev" "$url" $out
|
2003-11-25 18:38:48 +01:00
|
|
|
|
2004-04-14 12:55:33 +02:00
|
|
|
actual=$(nix-hash $out)
|
2005-02-22 17:27:28 +01:00
|
|
|
if test "$actual" != "$outputHash"; then
|
|
|
|
echo "hash is $actual, expected $outputHash" >&2
|
2004-04-14 12:55:33 +02:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
stopNest
|