* Make fetchsvn dependent on Subversion.
svn path=/nixpkgs/trunk/; revision=301
This commit is contained in:
parent
c173a50869
commit
dd19f0b526
@ -1,9 +1,17 @@
|
|||||||
Function(["name","url","rev"],
|
Function(["name","url","rev"],
|
||||||
Package(
|
Package(
|
||||||
[ ("name", Var("name"))
|
[ ("name", Var("name"))
|
||||||
, ("build", Relative("fetchsvn/fetchsvn.sh"))
|
, ("build", Relative("fetchsvn/fetchsvn.sh"))
|
||||||
, ("url", Var("url"))
|
, ("url", Var("url"))
|
||||||
, ("rev", Var("rev"))
|
, ("rev", Var("rev"))
|
||||||
|
|
||||||
|
, ("svn", Call(IncludeFix("subversion/subversion.fix"),
|
||||||
|
[ ("localServer", True)
|
||||||
|
, ("httpsClient", True)
|
||||||
|
, ("httpServer", True)
|
||||||
|
, ("pythonBindings", True)
|
||||||
|
]))
|
||||||
|
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
)
|
)
|
@ -2,5 +2,4 @@
|
|||||||
|
|
||||||
echo "exporting svn repository $url (at rev $rev) into $out..."
|
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
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user