Author: simons
Date: Wed Apr 13 17:53:01 2011
New Revision: 26823
URL: https://svn.nixos.org/websvn/nix/?rev=26823&sc=1
Log:
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.
Modified:
nixpkgs/trunk/pkgs/top-level/all-packages.nix
Modified: nixpkgs/trunk/pkgs/top-level/all-packages.nix
==============================================================================
--- nixpkgs/trunk/pkgs/top-level/all-packages.nix Wed Apr 13 17:35:19
2011 (r26822)
+++ nixpkgs/trunk/pkgs/top-level/all-packages.nix Wed Apr 13 17:53:01
2011 (r26823)
@@ -6763,14 +6763,14 @@
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;
};
_______________________________________________
nix-commits mailing list
[email protected]
http://mail.cs.uu.nl/mailman/listinfo/nix-commits