summary refs log tree commit diff
path: root/pkgs/servers/http/nginx
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2019-11-20 10:17:54 +0100
committerJan Tojnar <jtojnar@gmail.com>2019-12-31 01:37:49 +0100
commit6ca6ac796b2a5d1c5596463abdd93bc9b6cc003e (patch)
treef7e05e6509973953dedade1333c125ef65163fb2 /pkgs/servers/http/nginx
parente9c27ed5f9494e1070ce4f1d5da14de1e9e072ac (diff)
downloadnixpkgs-6ca6ac796b2a5d1c5596463abdd93bc9b6cc003e.tar
nixpkgs-6ca6ac796b2a5d1c5596463abdd93bc9b6cc003e.tar.gz
nixpkgs-6ca6ac796b2a5d1c5596463abdd93bc9b6cc003e.tar.bz2
nixpkgs-6ca6ac796b2a5d1c5596463abdd93bc9b6cc003e.tar.lz
nixpkgs-6ca6ac796b2a5d1c5596463abdd93bc9b6cc003e.tar.xz
nixpkgs-6ca6ac796b2a5d1c5596463abdd93bc9b6cc003e.tar.zst
nixpkgs-6ca6ac796b2a5d1c5596463abdd93bc9b6cc003e.zip
treewide: configureFlags is a flat list
Diffstat (limited to 'pkgs/servers/http/nginx')
-rw-r--r--pkgs/servers/http/nginx/generic.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/servers/http/nginx/generic.nix b/pkgs/servers/http/nginx/generic.nix
index 2d1b994faab..990d7c5cf13 100644
--- a/pkgs/servers/http/nginx/generic.nix
+++ b/pkgs/servers/http/nginx/generic.nix
@@ -53,15 +53,15 @@ stdenv.mkDerivation {
     "--with-http_stub_status_module"
     "--with-threads"
     "--with-pcre-jit"
-  ] ++ optional withDebug [
+  ] ++ optionals withDebug [
     "--with-debug"
-  ] ++ optional withStream [
+  ] ++ optionals withStream [
     "--with-stream"
     "--with-stream_geoip_module"
     "--with-stream_realip_module"
     "--with-stream_ssl_module"
     "--with-stream_ssl_preread_module"
-  ] ++ optional withMail [
+  ] ++ optionals withMail [
     "--with-mail"
     "--with-mail_ssl_module"
   ] ++ optional (perl != null) [