about summary refs log tree commit diff
path: root/pkgs/development/interpreters/php
diff options
context:
space:
mode:
authorElis Hirwing <elis@hirwing.se>2018-09-15 14:10:41 +0200
committerElis Hirwing <elis@hirwing.se>2018-09-15 21:44:57 +0200
commit5a868df96712e900201dd9cdaa29dfeddd71a973 (patch)
treea4fa98d0b96f7b841d9c63c00c7d010128bcb375 /pkgs/development/interpreters/php
parentb78348d1a4b967288b06caf35eb4e26f0f65fa1e (diff)
downloadnixlib-5a868df96712e900201dd9cdaa29dfeddd71a973.tar
nixlib-5a868df96712e900201dd9cdaa29dfeddd71a973.tar.gz
nixlib-5a868df96712e900201dd9cdaa29dfeddd71a973.tar.bz2
nixlib-5a868df96712e900201dd9cdaa29dfeddd71a973.tar.lz
nixlib-5a868df96712e900201dd9cdaa29dfeddd71a973.tar.xz
nixlib-5a868df96712e900201dd9cdaa29dfeddd71a973.tar.zst
nixlib-5a868df96712e900201dd9cdaa29dfeddd71a973.zip
php: 7.2.8 -> 7.2.10
Changelog 7.2.9: http://php.net/ChangeLog-7.php#7.2.9
Changelog 7.2.10: http://php.net/ChangeLog-7.php#7.2.10
Diffstat (limited to 'pkgs/development/interpreters/php')
-rw-r--r--pkgs/development/interpreters/php/default.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/development/interpreters/php/default.nix b/pkgs/development/interpreters/php/default.nix
index 37a51ffded31..37cf30bab1aa 100644
--- a/pkgs/development/interpreters/php/default.nix
+++ b/pkgs/development/interpreters/php/default.nix
@@ -37,7 +37,10 @@ let
   , opensslSupport ? config.php.openssl or true
   , mbstringSupport ? config.php.mbstring or true
   , gdSupport ? config.php.gd or true
-  , intlSupport ? config.php.intl or true
+  # Because of an upstream bug: https://bugs.php.net/bug.php?id=76826
+  # We need to disable the intl support on darwin. Whenever the upstream bug is
+  # fixed we should revert this to just just "config.php.intl or true".
+  , intlSupport ? (config.php.intl or true) && (!stdenv.isDarwin)
   , exifSupport ? config.php.exif or true
   , xslSupport ? config.php.xsl or false
   , mcryptSupport ? config.php.mcrypt or true
@@ -225,7 +228,7 @@ in {
   };
 
   php72 = generic {
-    version = "7.2.8";
-    sha256 = "1rky321gcvjm0npbfd4bznh36an0y14viqcvn4yzy3x643sni00z";
+    version = "7.2.10";
+    sha256 = "17fsvdi6ihjghjsz9kk2li2rwrknm2ccb6ys0xmn789116d15dh1";
   };
 }