714a65d9d4
svn path=/nixpkgs/trunk/; revision=387
29 lines
1.1 KiB
Plaintext
29 lines
1.1 KiB
Plaintext
Function(["localServer", "httpsClient", "httpServer", "pythonBindings"],
|
|
|
|
Package(
|
|
[ ("name", "subversion-0.29.0")
|
|
|
|
, ("build", Relative("subversion/subversion-build.sh"))
|
|
|
|
, ("src", Call(IncludeFix("fetchurl/fetchurl.fix"),
|
|
[ ("url", "http://subversion.tigris.org/files/documents/15/5977/subversion-0.29.0.tar.gz")
|
|
, ("md5", "5de4d92eae7ea5d83fe6c3964a08e261")
|
|
]))
|
|
|
|
, ("localServer", Var("localServer"))
|
|
, ("httpsClient", Var("httpsClient"))
|
|
, ("httpServer", Var("httpServer"))
|
|
, ("httpsServer", True)
|
|
, ("pythonBindings", Var("pythonBindings"))
|
|
|
|
, ("stdenv", IncludeFix("stdenv/stdenv.fix"))
|
|
, ("ssl", If(Var("httpsClient"), IncludeFix("openssl/openssl.fix"), ""))
|
|
, ("swig", If(Var("pythonBindings"), IncludeFix("swig/swig.fix"), ""))
|
|
, ("httpd", If(Var("httpServer"), IncludeFix("httpd/httpd.fix"), ""))
|
|
, ("db4", If(Var("localServer"), IncludeFix("db4/db4.fix"), ""))
|
|
, ("libxml", IncludeFix("libxml2/libxml2.fix"))
|
|
, ("expat", If(Var("httpServer"), "", IncludeFix("expat/expat.fix")))
|
|
]
|
|
)
|
|
)
|