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 19:41:43 +0300
committerVladimír Čunát <vcunat@gmail.com>2016-05-19 10:00:25 +0200
commitd298b52fd35a2416128bc333dee52c0c79986226 (patch)
tree5f72ff44199d9195dc6c8d80c8c5af7f7dc5ec15 /pkgs/servers/http
parent29694b43b6256312ab96da8c72815ddd58a10043 (diff)
downloadnixlib-d298b52fd35a2416128bc333dee52c0c79986226.tar
nixlib-d298b52fd35a2416128bc333dee52c0c79986226.tar.gz
nixlib-d298b52fd35a2416128bc333dee52c0c79986226.tar.bz2
nixlib-d298b52fd35a2416128bc333dee52c0c79986226.tar.lz
nixlib-d298b52fd35a2416128bc333dee52c0c79986226.tar.xz
nixlib-d298b52fd35a2416128bc333dee52c0c79986226.tar.zst
nixlib-d298b52fd35a2416128bc333dee52c0c79986226.zip
treewide: Make explicit that 'dev' output of aprutil is used
Diffstat (limited to 'pkgs/servers/http')
-rw-r--r--pkgs/servers/http/apache-httpd/2.4.nix2
-rw-r--r--pkgs/servers/http/nginx/modules.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/http/apache-httpd/2.4.nix b/pkgs/servers/http/apache-httpd/2.4.nix
index 848bb12b0a6e..0ce0130c90ab 100644
--- a/pkgs/servers/http/apache-httpd/2.4.nix
+++ b/pkgs/servers/http/apache-httpd/2.4.nix
@@ -47,7 +47,7 @@ stdenv.mkDerivation rec {
   '';
   configureFlags = ''
     --with-apr=${apr.dev}
-    --with-apr-util=${aprutil}
+    --with-apr-util=${aprutil.dev}
     --with-z=${zlib}
     --with-pcre=${pcre}
     --disable-maintainer-mode
diff --git a/pkgs/servers/http/nginx/modules.nix b/pkgs/servers/http/nginx/modules.nix
index 993ddf0920b8..888efc006d0f 100644
--- a/pkgs/servers/http/nginx/modules.nix
+++ b/pkgs/servers/http/nginx/modules.nix
@@ -55,7 +55,7 @@
     src = "${pkgs.modsecurity_standalone.nginx}/nginx/modsecurity";
     inputs = [ pkgs.curl pkgs.apr pkgs.aprutil pkgs.apacheHttpd pkgs.yajl ];
     preConfigure = ''
-      export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${pkgs.aprutil}/include/apr-1 -I${pkgs.apacheHttpd.dev}/include -I${pkgs.apr.dev}/include/apr-1 -I${pkgs.yajl}/include"
+      export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${pkgs.aprutil.dev}/include/apr-1 -I${pkgs.apacheHttpd.dev}/include -I${pkgs.apr.dev}/include/apr-1 -I${pkgs.yajl}/include"
     '';
   };