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:50:01 +0300
committerVladimír Čunát <vcunat@gmail.com>2016-05-19 10:04:38 +0200
commit7fb29bfa73ad7e475201bcaba6e6aacc99e44c2f (patch)
tree8d5f610092d3284cf3f847d105c85f3743462e9c /pkgs/servers/http
parentc4ffd141845bf35b4fa0f8c6420d554a4ae1e280 (diff)
downloadnixlib-7fb29bfa73ad7e475201bcaba6e6aacc99e44c2f.tar
nixlib-7fb29bfa73ad7e475201bcaba6e6aacc99e44c2f.tar.gz
nixlib-7fb29bfa73ad7e475201bcaba6e6aacc99e44c2f.tar.bz2
nixlib-7fb29bfa73ad7e475201bcaba6e6aacc99e44c2f.tar.lz
nixlib-7fb29bfa73ad7e475201bcaba6e6aacc99e44c2f.tar.xz
nixlib-7fb29bfa73ad7e475201bcaba6e6aacc99e44c2f.tar.zst
nixlib-7fb29bfa73ad7e475201bcaba6e6aacc99e44c2f.zip
treewide: Make explicit that 'dev' output of zlib 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 62695de61c65..0bde9baa4bf2 100644
--- a/pkgs/servers/http/apache-httpd/2.2.nix
+++ b/pkgs/servers/http/apache-httpd/2.2.nix
@@ -39,7 +39,7 @@ stdenv.mkDerivation rec {
     configureFlags="$configureFlags --includedir=$dev/include"
   '';
   configureFlags = ''
-    --with-z=${zlib}
+    --with-z=${zlib.dev}
     --with-pcre=${pcre.dev}
     --enable-mods-shared=all
     --enable-authn-alias
diff --git a/pkgs/servers/http/apache-httpd/2.4.nix b/pkgs/servers/http/apache-httpd/2.4.nix
index 4c9924c33401..d52973ea12f1 100644
--- a/pkgs/servers/http/apache-httpd/2.4.nix
+++ b/pkgs/servers/http/apache-httpd/2.4.nix
@@ -48,7 +48,7 @@ stdenv.mkDerivation rec {
   configureFlags = ''
     --with-apr=${apr.dev}
     --with-apr-util=${aprutil.dev}
-    --with-z=${zlib}
+    --with-z=${zlib.dev}
     --with-pcre=${pcre.dev}
     --disable-maintainer-mode
     --disable-debugger-mode