From 201444f02dbf3f85ba79d0a1e03c16bbf66517e9 Mon Sep 17 00:00:00 2001 From: Sarah Brofeldt Date: Sun, 12 Nov 2017 13:07:22 +0100 Subject: [PATCH] php: Move test comment to the top --- pkgs/development/interpreters/php/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/interpreters/php/default.nix b/pkgs/development/interpreters/php/default.nix index f44b006e6bf..faf88ca13a9 100644 --- a/pkgs/development/interpreters/php/default.nix +++ b/pkgs/development/interpreters/php/default.nix @@ -1,3 +1,5 @@ +# pcre functionality is tested in nixos/tests/php-pcre.nix + { lib, stdenv, fetchurl, composableDerivation, autoconf, automake, flex, bison , mysql, libxml2, readline, zlib, curl, postgresql, gettext , openssl, pcre, pkgconfig, sqlite, config, libjpeg, libpng, freetype @@ -91,7 +93,6 @@ 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 ];