Add php 5.3 variant with fpm support
This commit is contained in:
parent
5de0ca50d7
commit
e85b164df8
@ -172,6 +172,10 @@ composableDerivation.composableDerivation {} ( fixed : let inherit (fixed.fixed)
|
|||||||
ftp = {
|
ftp = {
|
||||||
configureFlags = ["--enable-ftp"];
|
configureFlags = ["--enable-ftp"];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fpm = {
|
||||||
|
configureFlags = ["--enable-fpm"];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
cfg = {
|
cfg = {
|
||||||
@ -181,6 +185,7 @@ composableDerivation.composableDerivation {} ( fixed : let inherit (fixed.fixed)
|
|||||||
curlSupport = config.php.curl or true;
|
curlSupport = config.php.curl or true;
|
||||||
exifSupport = config.php.exif or true;
|
exifSupport = config.php.exif or true;
|
||||||
ftpSupport = config.php.ftp or true;
|
ftpSupport = config.php.ftp or true;
|
||||||
|
fpmSupport = config.php.fpm or false;
|
||||||
gdSupport = config.php.gd or true;
|
gdSupport = config.php.gd or true;
|
||||||
gettextSupport = config.php.gettext or true;
|
gettextSupport = config.php.gettext or true;
|
||||||
imapSupport = config.php.imap or false;
|
imapSupport = config.php.imap or false;
|
||||||
|
@ -3397,6 +3397,15 @@ let
|
|||||||
|
|
||||||
php53 = callPackage ../development/interpreters/php/5.3.nix { };
|
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 { };
|
php54 = callPackage ../development/interpreters/php/5.4.nix { };
|
||||||
|
|
||||||
php_apc = callPackage ../development/libraries/php-apc { };
|
php_apc = callPackage ../development/libraries/php-apc { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user