treewide: Make configureFlags lists
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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";
|
||||
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -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 ];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user