subversion: using getConfig

svn path=/nixpkgs/branches/stdenv-updates/; revision=10426
This commit is contained in:
Yury G. Kudryashov 2008-01-31 10:40:02 +00:00
parent 671fd9e721
commit e6a64be5c8

View file

@ -4602,12 +4602,14 @@ rec {
}; };
subversion14 = import ../applications/version-management/subversion-1.4.x { subversion14 = import ../applications/version-management/subversion-1.4.x {
inherit fetchurl stdenv apr aprutil neon expat swig zlib; inherit fetchurl stdenv apr aprutil neon expat swig zlib jdk;
bdbSupport = true; bdbSupport = getConfig ["subversion" "bdbSupport"] true;
httpServer = false; httpServer = getConfig ["subversion" "httpServer"] false;
sslSupport = getConfig ["subversion" "sslSupport"] true;
pythonBindings = getConfig ["subversion" "pythonBindings"] false;
perlBindings = getConfig ["subversion" "perlBindings"] false; perlBindings = getConfig ["subversion" "perlBindings"] false;
sslSupport = true; javahlBindings = getConfig ["subversion" "javahlBindings"] false;
compressionSupport = true; compressionSupport = getConfig ["subversion" "compressionSupport"] true;
httpd = apacheHttpd; httpd = apacheHttpd;
}; };