mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
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 = {
|
||||
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;
|
||||
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user