Merge pull request #22236 from Baughn/mediawiki

apache-httpd: Add 'extensions' config option for mediawiki
This commit is contained in:
goibhniu 2017-05-01 19:17:36 +02:00 committed by GitHub
commit 248a06695f

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 = "";