2003-11-05 13:17:48 +01:00
|
|
|
{ stdenv, fetchurl, openssl, httpd, db4, expat, swig
|
2003-11-03 17:18:00 +01:00
|
|
|
, localServer, httpServer, sslSupport, swigBindings
|
|
|
|
}:
|
|
|
|
derivation {
|
|
|
|
name = "subversion-0.32.1";
|
|
|
|
system = stdenv.system;
|
|
|
|
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
|
|
|
url = http://svn.collab.net/tarballs/subversion-0.32.1.tar.gz;
|
|
|
|
md5 = "b06717a8ef50db4b5c4d380af00bd901";
|
|
|
|
};
|
|
|
|
|
|
|
|
localServer = localServer;
|
|
|
|
httpServer = httpServer;
|
2003-11-05 13:17:48 +01:00
|
|
|
sslSupport = sslSupport;
|
|
|
|
swigBindings = swigBindings;
|
2003-11-03 17:18:00 +01:00
|
|
|
|
|
|
|
stdenv = stdenv;
|
|
|
|
openssl = if sslSupport then openssl else "";
|
|
|
|
httpd = if httpServer then httpd else "";
|
2003-11-05 13:17:48 +01:00
|
|
|
expat = expat;
|
2003-11-03 17:18:00 +01:00
|
|
|
db4 = if localServer then db4 else "";
|
|
|
|
swig = if swigBindings then swig else "";
|
|
|
|
}
|