nixpkgs/pkgs-ng/applications/version-management/subversion/default.fix
Eelco Dolstra 4cf6ec5ef5 * Converted some more packages.
* Subversion no longer needs libxml2 (just expat).

svn path=/nixpkgs/trunk/; revision=478
2003-11-05 12:17:48 +00:00

26 lines
679 B
Plaintext

{ stdenv, fetchurl, openssl, httpd, db4, expat, swig
, 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;
sslSupport = sslSupport;
swigBindings = swigBindings;
stdenv = stdenv;
openssl = if sslSupport then openssl else "";
httpd = if httpServer then httpd else "";
expat = expat;
db4 = if localServer then db4 else "";
swig = if swigBindings then swig else "";
}