treewide: Make configureFlags lists

This commit is contained in:
John Ericson
2018-07-25 17:44:21 -04:00
parent 85a9913edd
commit db965063b3
164 changed files with 380 additions and 263 deletions

View File

@@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ udev ncurses bluez ];
configureFlags = "--with-doxygen=no";
configureFlags = [ "--with-doxygen=no" ];
meta = {
homepage = http://dvdhrm.github.io/xwiimote;

View File

@@ -13,7 +13,15 @@ stdenv.mkDerivation rec{
buildInputs = [ unzip zlib SDL readline libGLU_combined libX11 ];
configureFlags = "--target=default --with-video=sdl --with-sound=sdl --with-readline --with-opengl --with-x --enable-riodevice";
configureFlags = [
"--target=default"
"--with-video=sdl"
"--with-sound=sdl"
"--with-readline"
"--with-opengl"
"--with-x"
"--enable-riodevice"
];
preConfigure = "cd src";

View File

@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
buildInputs = [ bison flex perl libpng giflib libjpeg alsaLib readline libGLU_combined
pkgconfig gtk2 SDL autoreconfHook libXaw ];
dontDisableStatic = true;
configureFlags = "--enable-fullscreen --enable-gnomeui";
configureFlags = [ "--enable-fullscreen --enable-gnomeui" ];
desktopItem = makeDesktopItem {
name = "vice";

View File

@@ -16,7 +16,7 @@ stdenv.mkDerivation {
patches = [ ./eintr.patch ];
configureFlags = "VLOCK_GROUP=root ROOT_GROUP=root";
configureFlags = [ "VLOCK_GROUP=root" "ROOT_GROUP=root" ];
buildInputs = [ pam ];