1source $stdenv/setup
2
3header "exporting $url (r$rev) into $out"
4
5if test "$sshSupport"; then
6 export SVN_SSH="$openssh/bin/ssh"
7fi
8
9# Pipe the "p" character into Subversion to force it to accept the
10# server's certificate. This is perfectly safe: we don't care
11# whether the server is being spoofed --- only the cryptographic
12# hash of the output matters.
13expect -f $sshSubversion "$username" "$password" "$rev" "$url" $out
14
15stopNest