summary refs log tree commit diff
path: root/pkgs/servers/mail/mailman
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2018-07-25 17:44:21 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2018-08-03 17:06:03 -0400
commitdb965063b346a33cc3f6363a40cbde2658d2cd23 (patch)
treef6c76998d8a18f09d782000922a0429cbaacf8b9 /pkgs/servers/mail/mailman
parent85a9913edd50b7ea9b4dfbaedd5d40a739b97d3e (diff)
downloadnixpkgs-db965063b346a33cc3f6363a40cbde2658d2cd23.tar
nixpkgs-db965063b346a33cc3f6363a40cbde2658d2cd23.tar.gz
nixpkgs-db965063b346a33cc3f6363a40cbde2658d2cd23.tar.bz2
nixpkgs-db965063b346a33cc3f6363a40cbde2658d2cd23.tar.lz
nixpkgs-db965063b346a33cc3f6363a40cbde2658d2cd23.tar.xz
nixpkgs-db965063b346a33cc3f6363a40cbde2658d2cd23.tar.zst
nixpkgs-db965063b346a33cc3f6363a40cbde2658d2cd23.zip
treewide: Make configureFlags lists
Diffstat (limited to 'pkgs/servers/mail/mailman')
-rw-r--r--pkgs/servers/mail/mailman/default.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/servers/mail/mailman/default.nix b/pkgs/servers/mail/mailman/default.nix
index 8ff20869b94..6e7c859ae8c 100644
--- a/pkgs/servers/mail/mailman/default.nix
+++ b/pkgs/servers/mail/mailman/default.nix
@@ -13,9 +13,13 @@ stdenv.mkDerivation rec {
 
   patches = [ ./fix-var-prefix.patch ];
 
-  configureFlags = "--without-permcheck --with-cgi-ext=.cgi --with-var-prefix=/var/lib/mailman";
+  configureFlags = [
+    "--without-permcheck"
+    "--with-cgi-ext=.cgi"
+    "--with-var-prefix=/var/lib/mailman"
+  ];
 
-  installTargets = "doinstall";         # Leave out the 'update' target that's implied by 'install'.
+  installTargets = "doinstall"; # Leave out the 'update' target that's implied by 'install'.
 
   makeFlags = [ "DIRSETGID=:" ];