2006-01-02 17:01:03 +01:00
|
|
|
{ localServer ? false
|
|
|
|
, httpServer ? false
|
|
|
|
, sslSupport ? false
|
|
|
|
, compressionSupport ? false
|
|
|
|
, pythonBindings ? false
|
|
|
|
, javahlBindings ? false
|
|
|
|
, stdenv, fetchurl
|
|
|
|
, openssl ? null, httpd ? null, db4 ? null, expat, swig ? null, jdk ? null, zlib ? null
|
|
|
|
}:
|
|
|
|
|
|
|
|
assert expat != null;
|
|
|
|
assert localServer -> db4 != null;
|
|
|
|
assert httpServer -> httpd != null && httpd.expat == expat;
|
|
|
|
assert sslSupport -> openssl != null && (httpServer -> httpd.openssl == openssl);
|
|
|
|
assert pythonBindings -> swig != null && swig.pythonSupport;
|
|
|
|
assert javahlBindings -> jdk != null;
|
|
|
|
assert compressionSupport -> zlib != null;
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2006-06-09 14:40:51 +02:00
|
|
|
name = "subversion-1.3.2";
|
2006-01-02 17:01:03 +01:00
|
|
|
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
2006-06-09 14:40:51 +02:00
|
|
|
url = http://subversion.tigris.org/downloads/subversion-1.3.2.tar.bz2;
|
|
|
|
sha1 = "688ab178db1f6acb2ad3bd99f030402621f837b6";
|
2006-01-02 17:01:03 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
openssl = if sslSupport then openssl else null;
|
|
|
|
zlib = if compressionSupport then zlib else null;
|
|
|
|
httpd = if httpServer then httpd else null;
|
|
|
|
db4 = if localServer then db4 else null;
|
|
|
|
swig = if pythonBindings then swig else null;
|
|
|
|
python = if pythonBindings then swig.python else null;
|
|
|
|
jdk = if javahlBindings then jdk else null;
|
|
|
|
|
|
|
|
inherit expat localServer httpServer sslSupport
|
|
|
|
pythonBindings javahlBindings;
|
|
|
|
}
|