about summary refs log tree commit diff
path: root/pkgs/development/interpreters
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-07-23 13:46:50 -0400
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-07-23 13:46:50 -0400
commit16d2d9acab99a2132bafea2e28474e73bc1a2c5d (patch)
tree864e39d0b3218a3fd2b5101a2116d79dada71027 /pkgs/development/interpreters
parent113016af86fecd915040b8a5ecb7e8457ec8ca1b (diff)
downloadnixlib-16d2d9acab99a2132bafea2e28474e73bc1a2c5d.tar
nixlib-16d2d9acab99a2132bafea2e28474e73bc1a2c5d.tar.gz
nixlib-16d2d9acab99a2132bafea2e28474e73bc1a2c5d.tar.bz2
nixlib-16d2d9acab99a2132bafea2e28474e73bc1a2c5d.tar.lz
nixlib-16d2d9acab99a2132bafea2e28474e73bc1a2c5d.tar.xz
nixlib-16d2d9acab99a2132bafea2e28474e73bc1a2c5d.tar.zst
nixlib-16d2d9acab99a2132bafea2e28474e73bc1a2c5d.zip
php: Update to 5.3.15
Includes fixes for CVE-2012-2688 and CVE-2012-3365.
Diffstat (limited to 'pkgs/development/interpreters')
-rw-r--r--pkgs/development/interpreters/php/5.3.nix9
1 files changed, 3 insertions, 6 deletions
diff --git a/pkgs/development/interpreters/php/5.3.nix b/pkgs/development/interpreters/php/5.3.nix
index 48eb8ac5ee9d..b4f00ab1f7d4 100644
--- a/pkgs/development/interpreters/php/5.3.nix
+++ b/pkgs/development/interpreters/php/5.3.nix
@@ -8,7 +8,7 @@ in
 
 composableDerivation {} ( fixed : let inherit (fixed.fixed) version; in {
 
-  version = "5.3.14";
+  version = "5.3.15";
 
   name = "php-${version}";
 
@@ -149,15 +149,12 @@ composableDerivation {} ( fixed : let inherit (fixed.fixed) version; in {
 
   installPhase = ''
     unset installPhase; installPhase;
-    cp php.ini-${ if builtins.lessThan (builtins.compareVersions version "5.3") 0
-        then "recommended" /* < PHP 5.3 */
-        else "production" /* >= PHP 5.3 */
-    } $iniFile
+    cp php.ini-production $iniFile
   '';
 
   src = args.fetchurl {
     url = "http://nl.php.net/get/php-${version}.tar.bz2/from/this/mirror";
-    sha256 = "1cqw0knkrb7wn49ki5kcly4i0hjnd12sf9l4rhk0vny5hdp5n1y8";
+    sha256 = "1vzij845n2akh2lkpacgdc5r0f7nw6pk9l9vi1h8l8k4krjjbdzr";
     name = "php-${version}.tar.bz2";
   };