summary refs log tree commit diff
path: root/pkgs/development/interpreters/php
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2019-01-10 17:43:14 +0100
committerRobin Gloster <mail@glob.in>2019-01-10 17:43:14 +0100
commit0af5ce1c8b61e6852793d536abb22672af5c160a (patch)
tree7671a09c37126703a4aae399979082570dc5fe59 /pkgs/development/interpreters/php
parent2ac775a0845e28956b481c67f4fda3a019d4c5f9 (diff)
downloadnixpkgs-0af5ce1c8b61e6852793d536abb22672af5c160a.tar
nixpkgs-0af5ce1c8b61e6852793d536abb22672af5c160a.tar.gz
nixpkgs-0af5ce1c8b61e6852793d536abb22672af5c160a.tar.bz2
nixpkgs-0af5ce1c8b61e6852793d536abb22672af5c160a.tar.lz
nixpkgs-0af5ce1c8b61e6852793d536abb22672af5c160a.tar.xz
nixpkgs-0af5ce1c8b61e6852793d536abb22672af5c160a.tar.zst
nixpkgs-0af5ce1c8b61e6852793d536abb22672af5c160a.zip
php73: 7.3.0 -> 7.3.1
Diffstat (limited to 'pkgs/development/interpreters/php')
-rw-r--r--pkgs/development/interpreters/php/default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/development/interpreters/php/default.nix b/pkgs/development/interpreters/php/default.nix
index 2757b9bd4ba..d890b1862d3 100644
--- a/pkgs/development/interpreters/php/default.nix
+++ b/pkgs/development/interpreters/php/default.nix
@@ -263,12 +263,10 @@ in {
   };
 
   php73 = generic {
-    version = "7.3.0";
-    sha256 = "0rvwx37dsmxivgrf4wfc1y778iln498c6a40biy9k6lnr6p7s9ks";
+    version = "7.3.1";
+    sha256 = "13iqfkz9rmx9vy106lvw1nbk88qgwdkvxam0l5s14r7jsw62pvxg";
 
-    # https://bugs.php.net/bug.php?id=71041
     # https://bugs.php.net/bug.php?id=76826
-    extraPatches = [ ./fix-bug-71041.patch ]
-      ++ optional stdenv.isDarwin ./php73-darwin-isfinite.patch;
+    extraPatches = optional stdenv.isDarwin ./php73-darwin-isfinite.patch;
   };
 }