mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +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 {
|
subversion = callPackage ../applications/version-management/subversion/default.nix {
|
||||||
neon = pkgs.neon029;
|
neon = pkgs.neon029;
|
||||||
bdbSupport = getConfig ["subversion" "bdbSupport"] true;
|
bdbSupport = true;
|
||||||
httpServer = getConfig ["subversion" "httpServer"] false;
|
httpServer = false;
|
||||||
httpSupport = getConfig ["subversion" "httpSupport"] true;
|
httpSupport = true;
|
||||||
sslSupport = getConfig ["subversion" "sslSupport"] true;
|
sslSupport = true;
|
||||||
pythonBindings = getConfig ["subversion" "pythonBindings"] false;
|
pythonBindings = false;
|
||||||
perlBindings = getConfig ["subversion" "perlBindings"] false;
|
perlBindings = false;
|
||||||
javahlBindings = supportsJDK && getConfig ["subversion" "javahlBindings"] false;
|
javahlBindings = false;
|
||||||
compressionSupport = getConfig ["subversion" "compressionSupport"] true;
|
compressionSupport = true;
|
||||||
httpd = apacheHttpd;
|
httpd = apacheHttpd;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user