about summary refs log tree commit diff
path: root/pkgs/servers/http/tengine
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/tengine
parente9c27ed5f9494e1070ce4f1d5da14de1e9e072ac (diff)
treewide: configureFlags is a flat list
Diffstat (limited to 'pkgs/servers/http/tengine')
-rw-r--r--pkgs/servers/http/tengine/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/servers/http/tengine/default.nix b/pkgs/servers/http/tengine/default.nix
index 1467b1577f998..1eeb5a8c4dd8d 100644
--- a/pkgs/servers/http/tengine/default.nix
+++ b/pkgs/servers/http/tengine/default.nix
@@ -53,23 +53,23 @@ stdenv.mkDerivation rec {
     "--with-poll_module"
     "--with-google_perftools_module"
     "--with-jemalloc"
-  ] ++ optional withDebug [
+  ] ++ optionals withDebug [
     "--with-debug"
-  ] ++ optional withMail [
+  ] ++ optionals withMail [
     "--with-mail"
     "--with-mail_ssl_module"
-  ] ++ optional (!withMail) [
+  ] ++ optionals (!withMail) [
     "--without-mail_pop3_module"
     "--without-mail_imap_module"
     "--without-mail_smtp_module"
-  ] ++ optional withStream [
+  ] ++ optionals withStream [
     "--with-stream"
     "--with-stream_ssl_module"
     "--with-stream_realip_module"
     "--with-stream_geoip_module"
     "--with-stream_ssl_preread_module"
     "--with-stream_sni"
-  ] ++ optional (!withStream) [
+  ] ++ optionals (!withStream) [
     "--without-stream_limit_conn_module"
     "--without-stream_access_module"
     "--without-stream_geo_module"