nixpkgs/pkgs/development/interpreters/php/default.nix

360 lines
10 KiB
Nix
Raw Normal View History

2017-11-12 12:07:22 +00:00
# pcre functionality is tested in nixos/tests/php-pcre.nix
2015-08-11 11:13:28 +00:00
{ lib, stdenv, fetchurl, composableDerivation, autoconf, automake, flex, bison
, mysql, libxml2, readline, zlib, curl, postgresql, gettext
, openssl, pcre, pkgconfig, sqlite, config, libjpeg, libpng, freetype
2015-08-11 11:13:28 +00:00
, libxslt, libmcrypt, bzip2, icu, openldap, cyrus_sasl, libmhash, freetds
2017-12-04 11:56:33 +00:00
, uwimap, pam, gmp, apacheHttpd, libiconv, systemd, libsodium }:
2015-08-11 11:13:28 +00:00
let
generic =
2015-12-02 12:52:17 +00:00
{ version, sha256 }:
2015-08-11 11:13:28 +00:00
let php7 = lib.versionAtLeast version "7.0";
2017-11-03 01:49:20 +00:00
mysqlndSupport = config.php.mysqlnd or false;
2017-12-28 16:50:27 +00:00
mysqlBuildInputs = lib.optional (!mysqlndSupport) mysql.connector-c;
2015-08-11 11:13:28 +00:00
in composableDerivation.composableDerivation {} (fixed: {
2015-08-11 11:13:28 +00:00
inherit version;
name = "php-${version}";
enableParallelBuilding = true;
nativeBuildInputs = [ pkgconfig ];
2017-11-12 12:19:17 +00:00
buildInputs = [ flex bison pcre ]
2016-10-19 07:35:06 +00:00
++ lib.optional stdenv.isLinux systemd;
2015-08-11 11:13:28 +00:00
CXXFLAGS = lib.optional stdenv.cc.isClang "-std=c++11";
2015-08-11 11:13:28 +00:00
flags = {
# much left to do here...
# SAPI modules:
apxs2 = {
configureFlags = ["--with-apxs2=${apacheHttpd.dev}/bin/apxs"];
2015-08-11 11:13:28 +00:00
buildInputs = [apacheHttpd];
};
2016-10-01 19:16:55 +00:00
embed = {
configureFlags = ["--enable-embed"];
};
2015-08-11 11:13:28 +00:00
# Extensions
imap = {
configureFlags = [
"--with-imap=${uwimap}"
"--with-imap-ssl"
];
buildInputs = [ uwimap openssl pam ];
};
ldap = {
configureFlags = [
"--with-ldap=/invalid/path"
"LDAP_DIR=${openldap.dev}"
"LDAP_INCDIR=${openldap.dev}/include"
"LDAP_LIBDIR=${openldap.out}/lib"
2016-06-08 20:37:06 +00:00
(lib.optional stdenv.isLinux "--with-ldap-sasl=${cyrus_sasl.dev}")
];
2016-06-08 20:37:06 +00:00
buildInputs = [openldap openssl] ++ lib.optional stdenv.isLinux cyrus_sasl;
2015-08-11 11:13:28 +00:00
};
mhash = {
configureFlags = ["--with-mhash"];
buildInputs = [libmhash];
};
curl = {
configureFlags = ["--with-curl=${curl.dev}"];
2015-08-11 11:13:28 +00:00
buildInputs = [curl openssl];
};
curlWrappers = {
configureFlags = ["--with-curlwrappers"];
};
zlib = {
configureFlags = ["--with-zlib=${zlib.dev}"];
2015-08-11 11:13:28 +00:00
buildInputs = [zlib];
};
libxml2 = {
configureFlags = [
"--with-libxml-dir=${libxml2.dev}"
2015-08-11 11:13:28 +00:00
];
buildInputs = [ libxml2 ];
};
pcntl = {
configureFlags = [ "--enable-pcntl" ];
};
readline = {
configureFlags = ["--with-readline=${readline.dev}"];
2015-08-11 11:13:28 +00:00
buildInputs = [ readline ];
};
sqlite = {
configureFlags = ["--with-pdo-sqlite=${sqlite.dev}"];
2015-08-11 11:13:28 +00:00
buildInputs = [ sqlite ];
};
postgresql = {
configureFlags = ["--with-pgsql=${postgresql}"];
buildInputs = [ postgresql ];
};
pdo_pgsql = {
configureFlags = ["--with-pdo-pgsql=${postgresql}"];
buildInputs = [ postgresql ];
};
mysql = {
2017-11-03 01:49:20 +00:00
configureFlags = ["--with-mysql${if mysqlndSupport then "=mysqlnd" else ""}"];
buildInputs = mysqlBuildInputs;
2015-08-11 11:13:28 +00:00
};
mysqli = {
2017-12-28 16:50:27 +00:00
configureFlags = ["--with-mysqli=${if mysqlndSupport then "mysqlnd" else "${mysql.connector-c}/bin/mysql_config"}"];
2017-11-03 01:49:20 +00:00
buildInputs = mysqlBuildInputs;
2015-08-11 11:13:28 +00:00
};
mysqli_embedded = {
configureFlags = ["--enable-embedded-mysqli"];
depends = "mysqli";
assertion = fixed.mysqliSupport;
};
pdo_mysql = {
2017-12-28 16:50:27 +00:00
configureFlags = ["--with-pdo-mysql=${if mysqlndSupport then "mysqlnd" else mysql.connector-c}"];
2017-11-03 01:49:20 +00:00
buildInputs = mysqlBuildInputs;
2015-08-11 11:13:28 +00:00
};
bcmath = {
configureFlags = ["--enable-bcmath"];
};
gd = {
# FIXME: Our own gd package doesn't work, see https://bugs.php.net/bug.php?id=60108.
configureFlags = [
"--with-gd"
"--with-freetype-dir=${freetype.dev}"
"--with-png-dir=${libpng.dev}"
"--with-jpeg-dir=${libjpeg.dev}"
2015-08-11 11:13:28 +00:00
];
buildInputs = [ libpng libjpeg freetype ];
};
gmp = {
configureFlags = ["--with-gmp=${gmp.dev}"];
2015-08-11 11:13:28 +00:00
buildInputs = [ gmp ];
};
soap = {
configureFlags = ["--enable-soap"];
};
sockets = {
configureFlags = ["--enable-sockets"];
};
openssl = {
2016-05-01 12:41:52 +00:00
configureFlags = ["--with-openssl"];
buildInputs = [openssl openssl.dev];
2015-08-11 11:13:28 +00:00
};
mbstring = {
configureFlags = ["--enable-mbstring"];
};
gettext = {
configureFlags = ["--with-gettext=${gettext}"];
buildInputs = [gettext];
};
intl = {
configureFlags = ["--enable-intl"];
buildInputs = [icu];
};
exif = {
configureFlags = ["--enable-exif"];
};
xsl = {
configureFlags = ["--with-xsl=${libxslt.dev}"];
2015-08-11 11:13:28 +00:00
buildInputs = [libxslt];
};
mcrypt = let libmcrypt' = libmcrypt.override { disablePosixThreads = true; }; in {
configureFlags = ["--with-mcrypt=${libmcrypt'}"];
buildInputs = [libmcrypt'];
};
bz2 = {
configureFlags = ["--with-bz2=${bzip2.dev}"];
2015-08-11 11:13:28 +00:00
buildInputs = [bzip2];
};
zip = {
configureFlags = ["--enable-zip"];
};
ftp = {
configureFlags = ["--enable-ftp"];
};
fpm = {
configureFlags = ["--enable-fpm"];
};
mssql = stdenv.lib.optionalAttrs (!stdenv.isDarwin) {
configureFlags = ["--with-mssql=${freetds}"];
buildInputs = [freetds];
};
zts = {
configureFlags = ["--enable-maintainer-zts"];
};
calendar = {
configureFlags = ["--enable-calendar"];
};
2017-12-04 11:56:33 +00:00
sodium = {
configureFlags = ["--with-sodium=${libsodium.dev}"];
buildInputs = [libsodium];
};
2015-08-11 11:13:28 +00:00
};
cfg = {
2016-06-08 20:37:06 +00:00
imapSupport = config.php.imap or (!stdenv.isDarwin);
2015-08-11 11:13:28 +00:00
ldapSupport = config.php.ldap or true;
mhashSupport = config.php.mhash or true;
mysqlSupport = (!php7) && (config.php.mysql or true);
mysqliSupport = config.php.mysqli or true;
pdo_mysqlSupport = config.php.pdo_mysql or true;
libxml2Support = config.php.libxml2 or true;
2016-06-08 20:37:06 +00:00
apxs2Support = config.php.apxs2 or (!stdenv.isDarwin);
2016-10-01 19:16:55 +00:00
embedSupport = config.php.embed or false;
2015-08-11 11:13:28 +00:00
bcmathSupport = config.php.bcmath or true;
socketsSupport = config.php.sockets or true;
curlSupport = config.php.curl or true;
curlWrappersSupport = (!php7) && (config.php.curlWrappers or true);
gettextSupport = config.php.gettext or true;
pcntlSupport = config.php.pcntl or true;
postgresqlSupport = config.php.postgresql or true;
pdo_pgsqlSupport = config.php.pdo_pgsql or true;
readlineSupport = config.php.readline or true;
sqliteSupport = config.php.sqlite or true;
soapSupport = config.php.soap or true;
zlibSupport = config.php.zlib or true;
opensslSupport = config.php.openssl or true;
mbstringSupport = config.php.mbstring or true;
gdSupport = config.php.gd or true;
intlSupport = config.php.intl or true;
exifSupport = config.php.exif or true;
xslSupport = config.php.xsl or false;
mcryptSupport = config.php.mcrypt or true;
bz2Support = config.php.bz2 or false;
zipSupport = config.php.zip or true;
ftpSupport = config.php.ftp or true;
fpmSupport = config.php.fpm or true;
gmpSupport = config.php.gmp or true;
mssqlSupport = (!php7) && (config.php.mssql or (!stdenv.isDarwin));
ztsSupport = config.php.zts or false;
calendarSupport = config.php.calendar or true;
2017-12-04 11:56:33 +00:00
sodiumSupport = (lib.versionAtLeast version "7.2") && config.php.sodium or true;
2015-08-11 11:13:28 +00:00
};
hardeningDisable = [ "bindnow" ];
2016-03-05 23:15:18 +00:00
preConfigure = ''
2015-08-11 11:13:28 +00:00
# Don't record the configure flags since this causes unnecessary
# runtime dependencies
2015-08-11 11:13:28 +00:00
for i in main/build-defs.h.in scripts/php-config.in; do
substituteInPlace $i \
--replace '@CONFIGURE_COMMAND@' '(omitted)' \
--replace '@CONFIGURE_OPTIONS@' "" \
--replace '@PHP_LDFLAGS@' ""
done
#[[ -z "$libxml2" ]] || addToSearchPath PATH $libxml2/bin
export EXTENSION_DIR=$out/lib/php/extensions
configureFlags+=(--with-config-file-path=$out/etc \
--includedir=$dev/include)
2015-08-11 11:13:28 +00:00
'';
configureFlags = [
"--with-config-file-scan-dir=/etc/php.d"
2017-11-12 12:19:17 +00:00
"--with-pcre-regex=${pcre.dev} PCRE_LIBDIR=${pcre}"
] ++ lib.optional stdenv.isDarwin "--with-iconv=${libiconv}"
++ lib.optional stdenv.isLinux "--with-fpm-systemd";
2016-04-29 06:26:20 +00:00
postInstall = ''
cp php.ini-production $out/etc/php.ini
2015-08-11 11:13:28 +00:00
'';
postFixup = ''
mkdir -p $dev/bin $dev/share/man/man1
mv $out/bin/phpize $out/bin/php-config $dev/bin/
mv $out/share/man/man1/phpize.1.gz \
$out/share/man/man1/php-config.1.gz \
$dev/share/man/man1/
'';
2015-08-11 11:13:28 +00:00
src = fetchurl {
2015-12-02 12:52:17 +00:00
url = "http://www.php.net/distributions/php-${version}.tar.bz2";
inherit sha256;
2015-08-11 11:13:28 +00:00
};
meta = with stdenv.lib; {
description = "An HTML-embedded scripting language";
homepage = http://www.php.net/;
2016-06-22 08:45:52 +00:00
license = licenses.php301;
2018-03-02 11:35:11 +00:00
maintainers = with maintainers; [ globin etu ];
2016-06-22 08:45:52 +00:00
platforms = platforms.all;
outputsToInstall = [ "out" "dev" ];
2015-08-11 11:13:28 +00:00
};
patches = if !php7 then [ ./fix-paths.patch ] else [ ./fix-paths-php7.patch ];
2016-06-08 20:37:06 +00:00
postPatch = lib.optional stdenv.isDarwin ''
substituteInPlace configure --replace "-lstdc++" "-lc++"
'';
stripDebugList = "bin sbin lib modules";
outputs = [ "out" "dev" ];
2015-08-11 11:13:28 +00:00
});
in {
php56 = generic {
version = "5.6.36";
sha256 = "0ahp9vk33dpsqgld0gg4npff67v0l39hs3wk5dm6h3lablzhwsk2";
2015-08-11 11:13:28 +00:00
};
2015-12-02 12:52:17 +00:00
php70 = generic {
version = "7.0.30";
sha256 = "0l0bhnlgxmfl7mrdykmxfl53simxsksdcnbg5ymqz6r31i03hgr1";
2015-12-02 12:52:17 +00:00
};
2016-12-13 20:55:05 +00:00
php71 = generic {
version = "7.1.17";
sha256 = "1kyvg1dvn2zddlc7apl8c74wlwz45rxx10fr1s4z6l1cannf6971";
2016-12-13 20:55:05 +00:00
};
2017-12-04 11:56:33 +00:00
php72 = generic {
php: 7.2.4 -> 7.2.5 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/php/versions. These checks were done: - built on NixOS - ran ‘/nix/store/zlkvhv6z2l08gawl8w2vnc7pb3v6p815-php-7.2.5/bin/phar.phar help’ got 0 exit code - ran ‘/nix/store/zlkvhv6z2l08gawl8w2vnc7pb3v6p815-php-7.2.5/bin/phar help’ got 0 exit code - ran ‘/nix/store/zlkvhv6z2l08gawl8w2vnc7pb3v6p815-php-7.2.5/bin/php -h’ got 0 exit code - ran ‘/nix/store/zlkvhv6z2l08gawl8w2vnc7pb3v6p815-php-7.2.5/bin/php --help’ got 0 exit code - ran ‘/nix/store/zlkvhv6z2l08gawl8w2vnc7pb3v6p815-php-7.2.5/bin/phpdbg help’ got 0 exit code - ran ‘/nix/store/zlkvhv6z2l08gawl8w2vnc7pb3v6p815-php-7.2.5/bin/php-cgi -h’ got 0 exit code - ran ‘/nix/store/zlkvhv6z2l08gawl8w2vnc7pb3v6p815-php-7.2.5/bin/php-cgi --help’ got 0 exit code - ran ‘/nix/store/zlkvhv6z2l08gawl8w2vnc7pb3v6p815-php-7.2.5/bin/pear -h’ got 0 exit code - ran ‘/nix/store/zlkvhv6z2l08gawl8w2vnc7pb3v6p815-php-7.2.5/bin/pear --help’ got 0 exit code - ran ‘/nix/store/zlkvhv6z2l08gawl8w2vnc7pb3v6p815-php-7.2.5/bin/pear help’ got 0 exit code - ran ‘/nix/store/zlkvhv6z2l08gawl8w2vnc7pb3v6p815-php-7.2.5/bin/peardev -h’ got 0 exit code - ran ‘/nix/store/zlkvhv6z2l08gawl8w2vnc7pb3v6p815-php-7.2.5/bin/peardev --help’ got 0 exit code - ran ‘/nix/store/zlkvhv6z2l08gawl8w2vnc7pb3v6p815-php-7.2.5/bin/peardev help’ got 0 exit code - ran ‘/nix/store/zlkvhv6z2l08gawl8w2vnc7pb3v6p815-php-7.2.5/bin/pecl -h’ got 0 exit code - ran ‘/nix/store/zlkvhv6z2l08gawl8w2vnc7pb3v6p815-php-7.2.5/bin/pecl --help’ got 0 exit code - ran ‘/nix/store/zlkvhv6z2l08gawl8w2vnc7pb3v6p815-php-7.2.5/bin/pecl help’ got 0 exit code - ran ‘/nix/store/zlkvhv6z2l08gawl8w2vnc7pb3v6p815-php-7.2.5/bin/php-fpm -h’ got 0 exit code - ran ‘/nix/store/zlkvhv6z2l08gawl8w2vnc7pb3v6p815-php-7.2.5/bin/php-fpm --help’ got 0 exit code - found 7.2.5 with grep in /nix/store/zlkvhv6z2l08gawl8w2vnc7pb3v6p815-php-7.2.5 - directory tree listing: https://gist.github.com/c9aa24f676de9bcd4cc434c086932362
2018-04-26 06:57:03 +00:00
version = "7.2.5";
sha256 = "0cb0g64mzkir81js27vjwqr8vh043f62ynqvds5n4ygsivx0x0pk";
2017-12-04 11:56:33 +00:00
};
2015-08-11 11:13:28 +00:00
}