Add php 5.3 variant with fpm support

This commit is contained in:
Shea Levy 2014-04-25 08:19:45 -04:00
parent 5de0ca50d7
commit e85b164df8
2 changed files with 14 additions and 0 deletions

View File

@ -172,6 +172,10 @@ composableDerivation.composableDerivation {} ( fixed : let inherit (fixed.fixed)
ftp = {
configureFlags = ["--enable-ftp"];
};
fpm = {
configureFlags = ["--enable-fpm"];
};
};
cfg = {
@ -181,6 +185,7 @@ composableDerivation.composableDerivation {} ( fixed : let inherit (fixed.fixed)
curlSupport = config.php.curl or true;
exifSupport = config.php.exif or true;
ftpSupport = config.php.ftp or true;
fpmSupport = config.php.fpm or false;
gdSupport = config.php.gd or true;
gettextSupport = config.php.gettext or true;
imapSupport = config.php.imap or false;

View File

@ -3397,6 +3397,15 @@ let
php53 = callPackage ../development/interpreters/php/5.3.nix { };
php_fpm53 = callPackage ../development/interpreters/php/5.3.nix {
config = config // {
php = (config.php or {}) // {
fpm = true;
apxs2 = false;
};
};
};
php54 = callPackage ../development/interpreters/php/5.4.nix { };
php_apc = callPackage ../development/libraries/php-apc { };