nixpkgs/pkgs/subversion/subversion.fix
Eelco Dolstra 15b39d40af * Link in expat if we are *not* building an Apache module.
svn path=/nixpkgs/trunk/; revision=377
2003-09-01 14:53:07 +00:00

29 lines
1.1 KiB
Plaintext

Function(["localServer", "httpsClient", "httpServer", "pythonBindings"],
Package(
[ ("name", "subversion-0.27.0")
, ("build", Relative("subversion/subversion-build.sh"))
, ("src", Call(IncludeFix("fetchurl/fetchurl.fix"),
[ ("url", "http://subversion.tigris.org/files/documents/15/5642/subversion-0.27.0.tar.gz")
, ("md5", "0f4fa0ebb0b58b83bad9433b8baa3f9a")
]))
, ("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")))
]
)
)