* Make fetchsvn dependent on Subversion.

svn path=/nixpkgs/trunk/; revision=301
This commit is contained in:
Eelco Dolstra 2003-08-18 10:06:23 +00:00
parent c173a50869
commit dd19f0b526
2 changed files with 12 additions and 5 deletions

View file

@ -1,9 +1,17 @@
Function(["name","url","rev"],
Package(
[ ("name", Var("name"))
[ ("name", Var("name"))
, ("build", Relative("fetchsvn/fetchsvn.sh"))
, ("url", Var("url"))
, ("rev", Var("rev"))
, ("url", Var("url"))
, ("rev", Var("rev"))
, ("svn", Call(IncludeFix("subversion/subversion.fix"),
[ ("localServer", True)
, ("httpsClient", True)
, ("httpServer", True)
, ("pythonBindings", True)
]))
]
)
)

View file

@ -2,5 +2,4 @@
echo "exporting svn repository $url (at rev $rev) into $out..."
svn export -r $rev $url $out || exit 1
$svn/bin/svn export -r $rev $url $out || exit 1