add calendar functions to PHP by default
This commit is contained in:
parent
e6716cba0d
commit
fff1cc805a
@ -189,6 +189,10 @@ composableDerivation.composableDerivation {} ( fixed : let inherit (fixed.fixed)
|
|||||||
configureFlags = ["--enable-maintainer-zts"];
|
configureFlags = ["--enable-maintainer-zts"];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
calendar = {
|
||||||
|
configureFlags = ["--enable-calendar"];
|
||||||
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
php is build within this derivation in order to add the xdebug lines to the php.ini.
|
php is build within this derivation in order to add the xdebug lines to the php.ini.
|
||||||
So both Apache and command line php both use xdebug without having to configure anything.
|
So both Apache and command line php both use xdebug without having to configure anything.
|
||||||
@ -229,6 +233,7 @@ composableDerivation.composableDerivation {} ( fixed : let inherit (fixed.fixed)
|
|||||||
fpmSupport = config.php.fpm or true;
|
fpmSupport = config.php.fpm or true;
|
||||||
mssqlSupport = config.php.mssql or (!stdenv.isDarwin);
|
mssqlSupport = config.php.mssql or (!stdenv.isDarwin);
|
||||||
ztsSupport = config.php.zts or false;
|
ztsSupport = config.php.zts or false;
|
||||||
|
calendarSupport = config.php.calendar or false;
|
||||||
};
|
};
|
||||||
|
|
||||||
configurePhase = ''
|
configurePhase = ''
|
||||||
|
@ -193,6 +193,9 @@ composableDerivation.composableDerivation {} ( fixed : let inherit (fixed.fixed)
|
|||||||
buildInputs = [freetds];
|
buildInputs = [freetds];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
calendar = {
|
||||||
|
configureFlags = ["--enable-calendar"];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
cfg = {
|
cfg = {
|
||||||
@ -227,6 +230,7 @@ composableDerivation.composableDerivation {} ( fixed : let inherit (fixed.fixed)
|
|||||||
fpmSupport = config.php.fpm or true;
|
fpmSupport = config.php.fpm or true;
|
||||||
gmpSupport = config.php.gmp or true;
|
gmpSupport = config.php.gmp or true;
|
||||||
mssqlSupport = config.php.mssql or (!stdenv.isDarwin);
|
mssqlSupport = config.php.mssql or (!stdenv.isDarwin);
|
||||||
|
calendarSupport = config.php.calendar or true;
|
||||||
};
|
};
|
||||||
|
|
||||||
configurePhase = ''
|
configurePhase = ''
|
||||||
|
@ -193,6 +193,11 @@ composableDerivation.composableDerivation {} ( fixed : let inherit (fixed.fixed)
|
|||||||
buildInputs = [freetds];
|
buildInputs = [freetds];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
calendar = {
|
||||||
|
configureFlags = ["--enable-calendar"];
|
||||||
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
cfg = {
|
cfg = {
|
||||||
@ -227,6 +232,7 @@ composableDerivation.composableDerivation {} ( fixed : let inherit (fixed.fixed)
|
|||||||
fpmSupport = config.php.fpm or true;
|
fpmSupport = config.php.fpm or true;
|
||||||
gmpSupport = config.php.gmp or true;
|
gmpSupport = config.php.gmp or true;
|
||||||
mssqlSupport = config.php.mssql or (!stdenv.isDarwin);
|
mssqlSupport = config.php.mssql or (!stdenv.isDarwin);
|
||||||
|
calendarSupport = config.php.calendar or true;
|
||||||
};
|
};
|
||||||
|
|
||||||
configurePhase = ''
|
configurePhase = ''
|
||||||
|
Loading…
Reference in New Issue
Block a user