2008-06-19 19:29:25 +04:00
|
|
|
{ bdbSupport ? false # build support for Berkeley DB repositories
|
|
|
|
, httpServer ? false # build Apache DAV module
|
|
|
|
, httpSupport ? false # client must support http
|
|
|
|
, pythonBindings ? false
|
|
|
|
, perlBindings ? false
|
|
|
|
, javahlBindings ? false
|
2012-01-14 15:41:06 +04:00
|
|
|
, saslSupport ? false
|
2013-12-31 17:55:34 +04:00
|
|
|
, stdenv, fetchurl, apr, aprutil, zlib, sqlite
|
2014-11-07 13:55:49 +03:00
|
|
|
, apacheHttpd ? null, expat, swig ? null, jdk ? null, python ? null, perl ? null
|
2013-12-30 23:32:53 +04:00
|
|
|
, sasl ? null, serf ? null
|
2008-06-19 19:29:25 +04:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert bdbSupport -> aprutil.bdbSupport;
|
2014-11-07 13:55:49 +03:00
|
|
|
assert httpServer -> apacheHttpd != null;
|
2009-10-02 15:49:21 +04:00
|
|
|
assert pythonBindings -> swig != null && python != null;
|
|
|
|
assert javahlBindings -> jdk != null && perl != null;
|
2008-06-19 19:29:25 +04:00
|
|
|
|
2015-10-01 23:22:31 +03:00
|
|
|
let
|
|
|
|
|
2016-03-11 21:39:42 +03:00
|
|
|
common = { version, sha256 }: stdenv.mkDerivation (rec {
|
2015-12-16 17:17:00 +03:00
|
|
|
inherit version;
|
|
|
|
name = "subversion-${version}";
|
2008-06-19 19:29:25 +04:00
|
|
|
|
2015-12-16 17:17:00 +03:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://apache/subversion/${name}.tar.bz2";
|
2016-03-11 21:39:42 +03:00
|
|
|
inherit sha256;
|
2015-12-16 17:17:00 +03:00
|
|
|
};
|
2008-06-19 19:29:25 +04:00
|
|
|
|
2015-10-18 14:20:14 +03:00
|
|
|
# Can't do separate $lib and $bin, as libs reference bins
|
|
|
|
outputs = [ "dev" "out" "man" ];
|
|
|
|
|
2015-12-16 17:17:00 +03:00
|
|
|
buildInputs = [ zlib apr aprutil sqlite ]
|
|
|
|
++ stdenv.lib.optional httpSupport serf
|
|
|
|
++ stdenv.lib.optional pythonBindings python
|
|
|
|
++ stdenv.lib.optional perlBindings perl
|
|
|
|
++ stdenv.lib.optional saslSupport sasl;
|
|
|
|
|
2016-04-30 18:13:26 +03:00
|
|
|
patches = [ ./apr-1.patch ];
|
|
|
|
|
2016-05-20 15:38:14 +03:00
|
|
|
# SVN build seems broken on gcc5:
|
|
|
|
# https://gcc.gnu.org/gcc-5/porting_to.html
|
|
|
|
CPPFLAGS = "-P";
|
|
|
|
|
2015-12-16 17:17:00 +03:00
|
|
|
configureFlags = ''
|
|
|
|
${if bdbSupport then "--with-berkeley-db" else "--without-berkeley-db"}
|
2016-04-16 19:40:54 +03:00
|
|
|
${if httpServer then "--with-apxs=${apacheHttpd.dev}/bin/apxs" else "--without-apxs"}
|
2015-12-16 17:17:00 +03:00
|
|
|
${if pythonBindings || perlBindings then "--with-swig=${swig}" else "--without-swig"}
|
|
|
|
${if javahlBindings then "--enable-javahl --with-jdk=${jdk}" else ""}
|
|
|
|
--disable-keychain
|
|
|
|
${if saslSupport then "--with-sasl=${sasl}" else "--without-sasl"}
|
|
|
|
${if httpSupport then "--with-serf=${serf}" else "--without-serf"}
|
2016-04-16 20:50:01 +03:00
|
|
|
--with-zlib=${zlib.dev}
|
2016-04-16 20:47:23 +03:00
|
|
|
--with-sqlite=${sqlite.dev}
|
2015-12-16 17:17:00 +03:00
|
|
|
'';
|
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
makeFlagsArray=(APACHE_LIBEXECDIR=$out/modules)
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
if test -n "$pythonBindings"; then
|
|
|
|
make swig-py swig_pydir=$(toPythonPath $out)/libsvn swig_pydir_extra=$(toPythonPath $out)/svn
|
|
|
|
make install-swig-py swig_pydir=$(toPythonPath $out)/libsvn swig_pydir_extra=$(toPythonPath $out)/svn
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test -n "$perlBindings"; then
|
|
|
|
make swig-pl-lib
|
|
|
|
make install-swig-pl-lib
|
|
|
|
cd subversion/bindings/swig/perl/native
|
|
|
|
perl Makefile.PL PREFIX=$out
|
|
|
|
make install
|
|
|
|
cd -
|
|
|
|
fi
|
|
|
|
|
|
|
|
mkdir -p $out/share/bash-completion/completions
|
|
|
|
cp tools/client-side/bash_completion $out/share/bash-completion/completions/subversion
|
2015-10-18 14:20:14 +03:00
|
|
|
|
|
|
|
for f in $out/lib/*.la; do
|
|
|
|
substituteInPlace $f --replace "${expat.dev}/lib" "${expat.out}/lib"
|
|
|
|
substituteInPlace $f --replace "${zlib.dev}/lib" "${zlib.out}/lib"
|
|
|
|
substituteInPlace $f --replace "${sqlite.dev}/lib" "${sqlite.out}/lib"
|
|
|
|
done
|
2015-12-16 17:17:00 +03:00
|
|
|
'';
|
|
|
|
|
|
|
|
inherit perlBindings pythonBindings;
|
2008-07-07 15:46:50 +04:00
|
|
|
|
2015-12-16 17:17:00 +03:00
|
|
|
enableParallelBuilding = true;
|
2008-06-19 19:29:25 +04:00
|
|
|
|
2015-12-16 17:17:00 +03:00
|
|
|
meta = {
|
|
|
|
description = "A version control system intended to be a compelling replacement for CVS in the open source community";
|
|
|
|
homepage = http://subversion.apache.org/;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ eelco lovek323 ];
|
|
|
|
hydraPlatforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
|
|
|
};
|
2010-10-29 18:46:18 +04:00
|
|
|
|
2015-12-16 17:17:00 +03:00
|
|
|
} // stdenv.lib.optionalAttrs stdenv.isDarwin {
|
|
|
|
CXX = "clang++";
|
|
|
|
CC = "clang";
|
|
|
|
CPP = "clang -E";
|
|
|
|
CXXCPP = "clang++ -E";
|
|
|
|
});
|
|
|
|
|
|
|
|
in {
|
|
|
|
|
|
|
|
subversion18 = common {
|
2016-05-18 22:28:41 +03:00
|
|
|
version = "1.8.16";
|
|
|
|
sha256 = "0imkxn25n6sbcgfldrx4z29npjprb1lxjm5fb89q4297161nx3zi";
|
2008-06-19 19:29:25 +04:00
|
|
|
};
|
2015-11-14 23:32:51 +03:00
|
|
|
|
2015-12-16 17:17:00 +03:00
|
|
|
subversion19 = common {
|
2016-05-18 22:29:28 +03:00
|
|
|
version = "1.9.4";
|
|
|
|
sha256 = "16cjkvvq628hbznkhqkppzs8nifcr7k43s5y4c32cgwqmgigjrqj";
|
2008-06-19 19:29:25 +04:00
|
|
|
};
|
|
|
|
|
2015-12-16 17:17:00 +03:00
|
|
|
}
|