treewide: Make all the rest of configureFlags

This commit is contained in:
John Ericson
2018-08-03 17:06:03 -04:00
parent f92ed87372
commit f0d6b385d1
19 changed files with 49 additions and 30 deletions
+5 -2
View File
@@ -10,8 +10,11 @@ stdenv.mkDerivation rec {
buildInputs = [ openssl zlib ];
configureFlags =
"--with-nicklen=100 --with-topiclen=360 --enable-openssl=${openssl.dev}";
configureFlags = [
"--with-nicklen=100"
"--with-topiclen=360"
"--enable-openssl=${openssl.dev}"
];
postInstall = "echo postinstall; mkdir -p \${out}/ ; rm -rf \${out}/logs ; ln -s /home/ircd \${out}/logs;";