2008-06-19 16:29:25 +01: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 11:41:06 +00:00
|
|
|
, saslSupport ? false
|
2018-06-02 03:50:38 +01:00
|
|
|
, stdenv, fetchurl, apr, aprutil, zlib, sqlite, openssl, lz4, utf8proc
|
2014-11-07 10:55:49 +00:00
|
|
|
, apacheHttpd ? null, expat, swig ? null, jdk ? null, python ? null, perl ? null
|
2018-06-02 03:50:38 +01:00
|
|
|
, sasl ? null, serf ? null
|
2008-06-19 16:29:25 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert bdbSupport -> aprutil.bdbSupport;
|
2014-11-07 10:55:49 +00:00
|
|
|
assert httpServer -> apacheHttpd != null;
|
2009-10-02 12:49:21 +01:00
|
|
|
assert pythonBindings -> swig != null && python != null;
|
|
|
|
assert javahlBindings -> jdk != null && perl != null;
|
2008-06-19 16:29:25 +01:00
|
|
|
|
2015-10-01 21:22:31 +01:00
|
|
|
let
|
|
|
|
|
2018-06-02 03:50:38 +01:00
|
|
|
common = { version, sha256, extraBuildInputs ? [ ] }: stdenv.mkDerivation (rec {
|
2015-12-16 14:17:00 +00:00
|
|
|
inherit version;
|
|
|
|
name = "subversion-${version}";
|
2008-06-19 16:29:25 +01:00
|
|
|
|
2015-12-16 14:17:00 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://apache/subversion/${name}.tar.bz2";
|
2016-03-11 18:39:42 +00:00
|
|
|
inherit sha256;
|
2015-12-16 14:17:00 +00:00
|
|
|
};
|
2008-06-19 16:29:25 +01:00
|
|
|
|
2017-03-20 14:04:18 +00:00
|
|
|
# Can't do separate $lib and $bin, as libs reference bins
|
|
|
|
outputs = [ "out" "dev" "man" ];
|
2015-10-18 12:20:14 +01:00
|
|
|
|
2016-09-22 16:08:06 +01:00
|
|
|
buildInputs = [ zlib apr aprutil sqlite openssl ]
|
2018-06-02 03:50:38 +01:00
|
|
|
++ extraBuildInputs
|
2015-12-16 14:17:00 +00:00
|
|
|
++ stdenv.lib.optional httpSupport serf
|
|
|
|
++ stdenv.lib.optional pythonBindings python
|
|
|
|
++ stdenv.lib.optional perlBindings perl
|
|
|
|
++ stdenv.lib.optional saslSupport sasl;
|
|
|
|
|
2016-04-30 16:13:26 +01:00
|
|
|
patches = [ ./apr-1.patch ];
|
|
|
|
|
2016-05-20 13:38:14 +01:00
|
|
|
# SVN build seems broken on gcc5:
|
|
|
|
# https://gcc.gnu.org/gcc-5/porting_to.html
|
|
|
|
CPPFLAGS = "-P";
|
|
|
|
|
2018-07-25 22:44:21 +01:00
|
|
|
configureFlags = [
|
|
|
|
(stdenv.lib.withFeature bdbSupport "berkeley-db")
|
|
|
|
(stdenv.lib.withFeatureAs httpServer "apxs" "${apacheHttpd.dev}/bin/apxs")
|
|
|
|
(stdenv.lib.withFeatureAs (pythonBindings || perlBindings) "swig" swig)
|
|
|
|
(stdenv.lib.withFeatureAs saslSupport "sasl" sasl)
|
|
|
|
(stdenv.lib.withFeatureAs httpSupport "serf" serf)
|
|
|
|
"--disable-keychain"
|
|
|
|
"--with-zlib=${zlib.dev}"
|
|
|
|
"--with-sqlite=${sqlite.dev}"
|
|
|
|
] ++ stdenv.lib.optionals javahlBindings [
|
|
|
|
"--enable-javahl"
|
|
|
|
"--with-jdk=${jdk}"
|
|
|
|
];
|
2015-12-16 14:17:00 +00: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 12:20:14 +01:00
|
|
|
|
2017-03-20 14:04:18 +00:00
|
|
|
for f in $out/lib/*.la $out/lib/python*/site-packages/*/*.la; do
|
2016-09-22 16:08:06 +01:00
|
|
|
substituteInPlace $f \
|
|
|
|
--replace "${expat.dev}/lib" "${expat.out}/lib" \
|
|
|
|
--replace "${zlib.dev}/lib" "${zlib.out}/lib" \
|
|
|
|
--replace "${sqlite.dev}/lib" "${sqlite.out}/lib" \
|
|
|
|
--replace "${openssl.dev}/lib" "${openssl.out}/lib"
|
|
|
|
done
|
2015-12-16 14:17:00 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
inherit perlBindings pythonBindings;
|
2008-07-07 12:46:50 +01:00
|
|
|
|
2015-12-16 14:17:00 +00:00
|
|
|
enableParallelBuilding = true;
|
2008-06-19 16:29:25 +01:00
|
|
|
|
2018-08-08 19:24:01 +01:00
|
|
|
checkInputs = [ python ];
|
2018-04-25 04:20:18 +01:00
|
|
|
doCheck = false; # fails 10 out of ~2300 tests
|
|
|
|
|
2018-08-09 03:48:06 +01:00
|
|
|
meta = with stdenv.lib; {
|
2015-12-16 14:17:00 +00:00
|
|
|
description = "A version control system intended to be a compelling replacement for CVS in the open source community";
|
2018-08-09 03:48:06 +01:00
|
|
|
license = licenses.asl20;
|
2015-12-16 14:17:00 +00:00
|
|
|
homepage = http://subversion.apache.org/;
|
2018-08-09 03:48:06 +01:00
|
|
|
maintainers = with maintainers; [ eelco lovek323 ];
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2015-12-16 14:17:00 +00:00
|
|
|
};
|
2010-10-29 15:46:18 +01:00
|
|
|
|
2015-12-16 14:17:00 +00:00
|
|
|
} // stdenv.lib.optionalAttrs stdenv.isDarwin {
|
|
|
|
CXX = "clang++";
|
|
|
|
CC = "clang";
|
|
|
|
CPP = "clang -E";
|
|
|
|
CXXCPP = "clang++ -E";
|
|
|
|
});
|
|
|
|
|
|
|
|
in {
|
|
|
|
subversion18 = common {
|
2017-10-07 18:41:30 +01:00
|
|
|
version = "1.8.19";
|
|
|
|
sha256 = "1gp6426gkdza6ni2whgifjcmjb4nq34ljy07yxkrhlarvfq6ks2n";
|
2008-06-19 16:29:25 +01:00
|
|
|
};
|
2015-11-14 20:32:51 +00:00
|
|
|
|
2015-12-16 14:17:00 +00:00
|
|
|
subversion19 = common {
|
2018-11-08 01:25:57 +00:00
|
|
|
version = "1.9.9";
|
|
|
|
sha256 = "1ll13ychbkp367c7zsrrpda5nygkryma5k18qfr8wbaq7dbvxzcd";
|
2008-06-19 16:29:25 +01:00
|
|
|
};
|
2018-06-02 03:50:38 +01:00
|
|
|
|
|
|
|
subversion_1_10 = common {
|
2018-10-14 03:23:17 +01:00
|
|
|
version = "1.10.3";
|
|
|
|
sha256 = "1z6r3n91a4znsh68rl3jisfr7k4faymhbpalmmvsmvsap34al3cz";
|
2018-06-02 03:50:38 +01:00
|
|
|
extraBuildInputs = [ lz4 utf8proc ];
|
|
|
|
};
|
2018-11-08 01:22:03 +00:00
|
|
|
|
|
|
|
subversion_1_11 = common {
|
2019-01-16 12:00:13 +00:00
|
|
|
version = "1.11.1";
|
|
|
|
sha256 = "1fv0psjxx5nxb4zmddyrma2bnv1bfff4p8ii6j8fqwjdr982gzcy";
|
2018-11-08 01:22:03 +00:00
|
|
|
extraBuildInputs = [ lz4 utf8proc ];
|
|
|
|
};
|
2015-12-16 14:17:00 +00:00
|
|
|
}
|