2008-06-19 17:29:25 +02:00
|
|
|
{ bdbSupport ? false # build support for Berkeley DB repositories
|
|
|
|
, httpServer ? false # build Apache DAV module
|
|
|
|
, httpSupport ? false # client must support http
|
|
|
|
, sslSupport ? false # client must support https
|
|
|
|
, compressionSupport ? false # client must support http compression
|
|
|
|
, pythonBindings ? false
|
|
|
|
, perlBindings ? false
|
|
|
|
, javahlBindings ? false
|
|
|
|
, stdenv, fetchurl, apr, aprutil, neon, zlib
|
|
|
|
, httpd ? null, expat, swig ? null, jdk ? null
|
|
|
|
}:
|
|
|
|
|
|
|
|
assert bdbSupport -> aprutil.bdbSupport;
|
|
|
|
assert httpServer -> httpd != null && httpd.expat == expat;
|
|
|
|
assert pythonBindings -> swig != null && swig.pythonSupport;
|
|
|
|
assert javahlBindings -> jdk != null;
|
|
|
|
assert sslSupport -> neon.sslSupport;
|
|
|
|
assert compressionSupport -> neon.compressionSupport;
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
|
2008-10-06 14:35:05 +02:00
|
|
|
version = "1.5.2";
|
2008-06-19 17:29:25 +02:00
|
|
|
|
|
|
|
name = "subversion-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2008-10-06 14:35:05 +02:00
|
|
|
url = http://subversion.tigris.org/downloads/subversion-1.5.2.tar.bz2;
|
|
|
|
sha256 = "1xf7hacidr8wxdf2m64lhv42sjis5hz469yslcpp4xfd6n846k3w";
|
2008-06-19 17:29:25 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [zlib apr aprutil]
|
|
|
|
++ stdenv.lib.optional httpSupport neon;
|
|
|
|
|
2008-08-03 14:23:27 +02:00
|
|
|
inherit perlBindings; # set a flag (see git expression)
|
|
|
|
|
2008-06-19 17:29:25 +02:00
|
|
|
configureFlags = ''
|
|
|
|
--disable-static
|
|
|
|
--disable-keychain
|
|
|
|
${if bdbSupport then "--with-berkeley-db" else "--without-berkeley-db"}
|
|
|
|
${if httpServer then
|
|
|
|
"--with-apxs=${httpd}/bin/apxs --with-apr=${httpd} --with-apr-util=${httpd}"
|
|
|
|
else
|
|
|
|
"--without-apxs"}
|
|
|
|
${if pythonBindings || perlBindings then "--with-swig=${swig}" else "--without-swig"}
|
|
|
|
${if javahlBindings then "--enable-javahl --with-jdk=${jdk}" else ""}
|
|
|
|
--disable-neon-version-check
|
|
|
|
'';
|
|
|
|
|
2008-07-07 13:46:50 +02:00
|
|
|
postInstall = ''
|
|
|
|
ensureDir $out/share/emacs/site-lisp
|
|
|
|
cp contrib/client-side/emacs/*.el $out/share/emacs/site-lisp/
|
2008-07-28 10:14:55 +02:00
|
|
|
''; # */
|
2008-07-07 13:46:50 +02:00
|
|
|
|
2008-06-19 17:29:25 +02:00
|
|
|
passthru = {
|
|
|
|
inherit perlBindings pythonBindings;
|
|
|
|
python = if swig != null && swig ? python then swig.python else null;
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A version control system intended to be a compelling replacement for CVS in the open source community";
|
|
|
|
homepage = http://subversion.tigris.org/;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|