treewide: configureFlags is a flat list

This commit is contained in:
Robin Gloster
2019-12-31 01:34:39 +01:00
committed by Jan Tojnar
parent a534e750a8
commit e9c27ed5f9
5 changed files with 19 additions and 16 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
}
);
configureFlags = stdenv.lib.optional (!withPython) [ "--disable-python" ];
configureFlags = stdenv.lib.optional (!withPython) "--disable-python";
buildInputs = [ openssl libpcap ]
++ stdenv.lib.optional withPython python2;