about summary refs log tree commit diff
path: root/pkgs/servers/http
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-04-16 20:45:26 +0300
committerVladimír Čunát <vcunat@gmail.com>2016-05-19 10:02:28 +0200
commitd42e94472db40583c78a31e5673353d4d6c3aa2a (patch)
tree12c4b3535b73b22046da3dc9c80a03651612c511 /pkgs/servers/http
parent5152e01e87d489de736cc17297a688303ac75cb5 (diff)
downloadnixlib-d42e94472db40583c78a31e5673353d4d6c3aa2a.tar
nixlib-d42e94472db40583c78a31e5673353d4d6c3aa2a.tar.gz
nixlib-d42e94472db40583c78a31e5673353d4d6c3aa2a.tar.bz2
nixlib-d42e94472db40583c78a31e5673353d4d6c3aa2a.tar.lz
nixlib-d42e94472db40583c78a31e5673353d4d6c3aa2a.tar.xz
nixlib-d42e94472db40583c78a31e5673353d4d6c3aa2a.tar.zst
nixlib-d42e94472db40583c78a31e5673353d4d6c3aa2a.zip
treewide: Make explicit that 'dev' output of pcre is used
Diffstat (limited to 'pkgs/servers/http')
-rw-r--r--pkgs/servers/http/apache-httpd/2.2.nix2
-rw-r--r--pkgs/servers/http/apache-httpd/2.4.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/http/apache-httpd/2.2.nix b/pkgs/servers/http/apache-httpd/2.2.nix
index 5e386cbe008f..62695de61c65 100644
--- a/pkgs/servers/http/apache-httpd/2.2.nix
+++ b/pkgs/servers/http/apache-httpd/2.2.nix
@@ -40,7 +40,7 @@ stdenv.mkDerivation rec {
   '';
   configureFlags = ''
     --with-z=${zlib}
-    --with-pcre=${pcre}
+    --with-pcre=${pcre.dev}
     --enable-mods-shared=all
     --enable-authn-alias
     ${if proxySupport then "--enable-proxy" else ""}
diff --git a/pkgs/servers/http/apache-httpd/2.4.nix b/pkgs/servers/http/apache-httpd/2.4.nix
index 0ce0130c90ab..4c9924c33401 100644
--- a/pkgs/servers/http/apache-httpd/2.4.nix
+++ b/pkgs/servers/http/apache-httpd/2.4.nix
@@ -49,7 +49,7 @@ stdenv.mkDerivation rec {
     --with-apr=${apr.dev}
     --with-apr-util=${aprutil.dev}
     --with-z=${zlib}
-    --with-pcre=${pcre}
+    --with-pcre=${pcre.dev}
     --disable-maintainer-mode
     --disable-debugger-mode
     --enable-mods-shared=all