summary refs log tree commit diff
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2013-04-22 22:31:57 -0700
committerMichael Raskin <7c6f434c@mail.ru>2013-04-22 22:31:57 -0700
commitf328c45b251af54831a757291ef58341ebedeaa0 (patch)
tree3b50c2185142bbe25cf265abd0dedefc2a8fa0b5
parentb98ece6bc2337c1e8a79db3e4849c271bb18361c (diff)
parentdba7f8b4fb6eb743c98dab38d52c48ce0ced4c15 (diff)
downloadnixlib-f328c45b251af54831a757291ef58341ebedeaa0.tar
nixlib-f328c45b251af54831a757291ef58341ebedeaa0.tar.gz
nixlib-f328c45b251af54831a757291ef58341ebedeaa0.tar.bz2
nixlib-f328c45b251af54831a757291ef58341ebedeaa0.tar.lz
nixlib-f328c45b251af54831a757291ef58341ebedeaa0.tar.xz
nixlib-f328c45b251af54831a757291ef58341ebedeaa0.tar.zst
nixlib-f328c45b251af54831a757291ef58341ebedeaa0.zip
Merge pull request #440 from bbenoist/master
php: add FTP support by default
-rw-r--r--pkgs/development/interpreters/php/5.3.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/interpreters/php/5.3.nix b/pkgs/development/interpreters/php/5.3.nix
index 6d81ca9eea65..fce9c0f152b2 100644
--- a/pkgs/development/interpreters/php/5.3.nix
+++ b/pkgs/development/interpreters/php/5.3.nix
@@ -143,6 +143,10 @@ composableDerivation.composableDerivation {} ( fixed : let inherit (fixed.fixed)
         configureFlags = ["--enable-zip"];
       };
 
+      ftp = {
+        configureFlags = ["--enable-ftp"];
+      };
+
       /*
          php is build within this derivation in order to add the xdebug lines to the php.ini.
          So both Apache and command line php both use xdebug without having to configure anything.
@@ -180,6 +184,7 @@ composableDerivation.composableDerivation {} ( fixed : let inherit (fixed.fixed)
     mcryptSupport = config.php.mcrypt or false;
     bz2Support = config.php.bz2 or false;
     zipSupport = config.php.zip or true;
+    ftpSupport = config.php.ftp or true;
   };
 
   configurePhase = ''