summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorSarah Brofeldt <sbrofeldt@gmail.com>2017-11-12 08:05:27 +0100
committerSarah Brofeldt <sbrofeldt@gmail.com>2017-11-12 08:05:27 +0100
commit58d07e2d6bd4377abe1b5ba1735c256a52ea01bc (patch)
tree74a19b8d597e896a49171d4899f1442072cf5062 /pkgs
parentc7891595c92f9f687f29d7187b5c87b4042df226 (diff)
downloadnixlib-58d07e2d6bd4377abe1b5ba1735c256a52ea01bc.tar
nixlib-58d07e2d6bd4377abe1b5ba1735c256a52ea01bc.tar.gz
nixlib-58d07e2d6bd4377abe1b5ba1735c256a52ea01bc.tar.bz2
nixlib-58d07e2d6bd4377abe1b5ba1735c256a52ea01bc.tar.lz
nixlib-58d07e2d6bd4377abe1b5ba1735c256a52ea01bc.tar.xz
nixlib-58d07e2d6bd4377abe1b5ba1735c256a52ea01bc.tar.zst
nixlib-58d07e2d6bd4377abe1b5ba1735c256a52ea01bc.zip
php: Add nixos test to ensure php-pcre works in httpd
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/interpreters/php/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/interpreters/php/default.nix b/pkgs/development/interpreters/php/default.nix
index 3f97116dea2e..f44b006e6bf2 100644
--- a/pkgs/development/interpreters/php/default.nix
+++ b/pkgs/development/interpreters/php/default.nix
@@ -91,6 +91,7 @@ let
           configureFlags = [ "--enable-pcntl" ];
         };
 
+        # pcre functionality is tested in nixos/tests/php-pcre.nix
         pcre = {
           configureFlags = ["--with-pcre-regex=${pcre.dev} PCRE_LIBDIR=${pcre}"];
           buildInputs = [ pcre ];