summary refs log tree commit diff
path: root/pkgs/development/interpreters/php_configurable/default.nix
diff options
context:
space:
mode:
authorMarc Weber <marco-oweber@gmx.de>2009-01-04 20:18:20 +0000
committerMarc Weber <marco-oweber@gmx.de>2009-01-04 20:18:20 +0000
commit692d493f4eac58a910496a8635f1437fe045d58c (patch)
tree50a11727b7e0ddc0db0aadac50f6b5d2d94e6d45 /pkgs/development/interpreters/php_configurable/default.nix
parent7cd7c4cffb4274d9ffb784f713fbacbfeec985f0 (diff)
downloadnixpkgs-692d493f4eac58a910496a8635f1437fe045d58c.tar
nixpkgs-692d493f4eac58a910496a8635f1437fe045d58c.tar.gz
nixpkgs-692d493f4eac58a910496a8635f1437fe045d58c.tar.bz2
nixpkgs-692d493f4eac58a910496a8635f1437fe045d58c.tar.lz
nixpkgs-692d493f4eac58a910496a8635f1437fe045d58c.tar.xz
nixpkgs-692d493f4eac58a910496a8635f1437fe045d58c.tar.zst
nixpkgs-692d493f4eac58a910496a8635f1437fe045d58c.zip
php: enabling mbstring support by default
svn path=/nixpkgs/trunk/; revision=13704
Diffstat (limited to 'pkgs/development/interpreters/php_configurable/default.nix')
-rw-r--r--pkgs/development/interpreters/php_configurable/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/interpreters/php_configurable/default.nix b/pkgs/development/interpreters/php_configurable/default.nix
index d079c83f364..1a2112dac55 100644
--- a/pkgs/development/interpreters/php_configurable/default.nix
+++ b/pkgs/development/interpreters/php_configurable/default.nix
@@ -83,6 +83,10 @@ composableDerivation {
           buildInputs = ["openssl"];
         };
 
+        mbstring = {
+          configureFlags = ["--enable-mbstring"];
+        };
+
         /*
            Building xdebug withing php to be able to add the parameters to the ini file.. Ther should be a better way
           meta = {
@@ -115,6 +119,7 @@ composableDerivation {
       zlibSupport = true;
       opnesslSupport = true;
       xdebugSupport = true;
+      mbstringSupport = true;
     };
 
     configurePhase = ''