treewide: Make more complicated configureFlags lists

This commit is contained in:
John Ericson
2018-08-03 17:06:03 -04:00
parent 632d24f11f
commit 85a9913edd
27 changed files with 193 additions and 190 deletions
+5 -4
View File
@@ -20,10 +20,11 @@ stdenv.mkDerivation rec {
'';
buildInputs = [ lzo openssl zlib yacc flex ];
configureFlags = ''
--with-lzo-headers=${lzo}/include/lzo
--with-ssl-headers=${openssl.dev}/include/openssl
--with-blowfish-headers=${openssl.dev}/include/openssl'';
configureFlags = [
"--with-lzo-headers=${lzo}/include/lzo"
"--with-ssl-headers=${openssl.dev}/include/openssl"
"--with-blowfish-headers=${openssl.dev}/include/openssl"
];
meta = with stdenv.lib; {
description = "Virtual Tunnels over TCP/IP with traffic shaping, compression and encryption";