summary refs log blame commit diff
path: root/pkgs/build-support/fetchsvn/builder.sh
blob: 25a3c756892671aaf18aecc4c1519bc68fc176b5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11

               
                                         
 
                                                     





                                    
 
                       

                                                    



          
. $stdenv/setup

header "exporting $url (r$rev) into $out"

prefetch=$(dirname $out)/svn-checkout-tmp-$outputHash
echo $prefetch
if test -e "$prefetch"; then
    mv $prefetch $out
else
    svn export -r "$rev" "$url" $out
fi

actual=$(nix-hash $out)
if test "$actual" != "$outputHash"; then
    echo "hash is $actual, expected $outputHash" >&2
    exit 1
fi

stopNest