mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 21:57:02 +03:00
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:
parent
7ed30ce04b
commit
4389638c94
@ -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;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user