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 -5
View File
@@ -27,11 +27,11 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
configureFlags = ''
--with-alsa --with-pipe --with-pulseaudio --with-stdout
--with-avahi --with-ssl=openssl --with-soxr
--without-configfiles --without-initscript
'';
configureFlags = [
"--with-alsa" "--with-pipe" "--with-pulseaudio" "--with-stdout"
"--with-avahi" "--with-ssl=openssl" "--with-soxr"
"--without-configfiles" "--without-initscript"
];
meta = with stdenv.lib; {
inherit (src.meta) homepage;