apache-httpd: Add 'extensions' config option

This commit is contained in:
Svein Ove Aas 2017-01-28 19:21:56 +00:00
parent 2608adeb17
commit 9b2d4a9fce

View file

@ -91,12 +91,16 @@ let
};
skins = config.skins;
extensions = config.extensions;
buildPhase =
''
for skin in $skins; do
cp -prvd $skin/* skins/
done
for extension in $extensions; do
cp -prvd $extension/* extensions/
done
''; # */
installPhase =
@ -287,6 +291,16 @@ in
'';
};
extensions = mkOption {
default = [];
type = types.listOf types.path;
description =
''
List of paths whose content is copied to the 'extensions'
subdirectory of the MediaWiki installation.
'';
};
extraConfig = mkOption {
type = types.lines;
default = "";