mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
subversion: using getConfig
svn path=/nixpkgs/trunk/; revision=10411
This commit is contained in:
parent
75ae1c3a58
commit
47a16b87d6
1 changed files with 7 additions and 5 deletions
|
@ -4791,12 +4791,14 @@ rec {
|
|||
};
|
||||
|
||||
subversion14 = import ../applications/version-management/subversion-1.4.x {
|
||||
inherit fetchurl stdenv apr aprutil neon expat swig zlib;
|
||||
bdbSupport = true;
|
||||
httpServer = false;
|
||||
inherit fetchurl stdenv apr aprutil neon expat swig zlib jdk;
|
||||
bdbSupport = getConfig ["subversion" "bdbSupport"] true;
|
||||
httpServer = getConfig ["subversion" "httpServer"] false;
|
||||
sslSupport = getConfig ["subversion" "sslSupport"] true;
|
||||
pythonBindings = getConfig ["subversion" "pythonBindings"] false;
|
||||
perlBindings = getConfig ["subversion" "perlBindings"] false;
|
||||
sslSupport = true;
|
||||
compressionSupport = true;
|
||||
javahlBindings = getConfig ["subversion" "javahlBindings"] false;
|
||||
compressionSupport = getConfig ["subversion" "compressionSupport"] true;
|
||||
httpd = apacheHttpd;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue