subversion: dropped support for getConfig -- use override instead!

Subversion was one of the last few packages that still supported the obsolete
getConfig function. Inside of nixpkgs, we don't rely on that feature; other
packages, like git, customize subversion by means of override. So it felt like
about time to drop getConfig.

svn path=/nixpkgs/trunk/; revision=26823
This commit is contained in:
Peter Simons 2011-04-13 17:53:01 +00:00
parent 7ed30ce04b
commit 4389638c94

View file

@ -6763,14 +6763,14 @@ let
subversion = callPackage ../applications/version-management/subversion/default.nix {
neon = pkgs.neon029;
bdbSupport = getConfig ["subversion" "bdbSupport"] true;
httpServer = getConfig ["subversion" "httpServer"] false;
httpSupport = getConfig ["subversion" "httpSupport"] true;
sslSupport = getConfig ["subversion" "sslSupport"] true;
pythonBindings = getConfig ["subversion" "pythonBindings"] false;
perlBindings = getConfig ["subversion" "perlBindings"] false;
javahlBindings = supportsJDK && getConfig ["subversion" "javahlBindings"] false;
compressionSupport = getConfig ["subversion" "compressionSupport"] true;
bdbSupport = true;
httpServer = false;
httpSupport = true;
sslSupport = true;
pythonBindings = false;
perlBindings = false;
javahlBindings = false;
compressionSupport = true;
httpd = apacheHttpd;
};