about summary refs log tree commit diff
path: root/pkgs/development/interpreters
diff options
context:
space:
mode:
authorVika <kisik21@fireburn.ru>2019-08-21 20:37:06 +0300
committerVika <kisik21@fireburn.ru>2019-08-21 20:37:06 +0300
commitba83c08610aef2a9726e58ae73fe9d88c021e663 (patch)
treed212238231707c03cfb1dd26708e55728c9890b4 /pkgs/development/interpreters
parent855be673584bbe10a3a2aa81ad31ab3ba42b3a7f (diff)
downloadnixlib-ba83c08610aef2a9726e58ae73fe9d88c021e663.tar
nixlib-ba83c08610aef2a9726e58ae73fe9d88c021e663.tar.gz
nixlib-ba83c08610aef2a9726e58ae73fe9d88c021e663.tar.bz2
nixlib-ba83c08610aef2a9726e58ae73fe9d88c021e663.tar.lz
nixlib-ba83c08610aef2a9726e58ae73fe9d88c021e663.tar.xz
nixlib-ba83c08610aef2a9726e58ae73fe9d88c021e663.tar.zst
nixlib-ba83c08610aef2a9726e58ae73fe9d88c021e663.zip
php: disable mhash
Per https://www.php.net/manual/en/intro.mhash.php, mhash extension
is obsolete, so disabling it here. (Also it doesn't cross-compile)

**Warning**: This could be a breaking change for some packages that
are very old and rely on this extension, maintainer discretion is
advised.
Diffstat (limited to 'pkgs/development/interpreters')
-rw-r--r--pkgs/development/interpreters/php/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/interpreters/php/default.nix b/pkgs/development/interpreters/php/default.nix
index 17a56665c5a8..f65b4628e8c8 100644
--- a/pkgs/development/interpreters/php/default.nix
+++ b/pkgs/development/interpreters/php/default.nix
@@ -17,7 +17,7 @@ let
   , withSystemd ? config.php.systemd or stdenv.isLinux
   , imapSupport ? config.php.imap or (!stdenv.isDarwin)
   , ldapSupport ? config.php.ldap or true
-  , mhashSupport ? config.php.mhash or true
+  , mhashSupport ? config.php.mhash or false
   , mysqlndSupport ? config.php.mysqlnd or true
   , mysqliSupport ? config.php.mysqli or true
   , pdo_mysqlSupport ? config.php.pdo_mysql or true