diff --git a/pkgs/applications/video/vlc/default.nix b/pkgs/applications/video/vlc/default.nix index 8f20bdd0d1c..c26a00c5223 100644 --- a/pkgs/applications/video/vlc/default.nix +++ b/pkgs/applications/video/vlc/default.nix @@ -18,7 +18,16 @@ stdenv.mkDerivation { libvorbis libtheora speex lua libgcrypt ]; - configureFlags = "--enable-alsa --disable-glx --disable-remoteosd --enable-faad --enable-theora --enable-vorbis --enable-speex"; + configureFlags = [ "--enable-alsa" + "--disable-glx" + "--disable-remoteosd" + "--enable-faad" + "--enable-theora" + "--enable-vorbis" + "--enable-speex" + "--disable-dbus" + "--disable-dbus-control" + ]; preBuild = '' substituteInPlace modules/misc/freetype.c --replace \ diff --git a/pkgs/development/interpreters/lua-5/default.nix b/pkgs/development/interpreters/lua-5/default.nix index e88d5851c35..5a35df4c513 100644 --- a/pkgs/development/interpreters/lua-5/default.nix +++ b/pkgs/development/interpreters/lua-5/default.nix @@ -6,7 +6,7 @@ stdenv.mkDerivation { url = http://www.lua.org/ftp/lua-5.1.4.tar.gz; sha256 = "0fmgk100ficm1jbm4ga9xy484v4cm89wsdfckdybb9gjx8jy4f5h"; }; - makeFlags = [ "MYCFLAGS=-fPIC" ]; + makeFlags = [ "CFLAGS=-fPIC" ]; buildFlags = "linux"; # TODO: support for non-linux systems installFlags = "install INSTALL_TOP=\${out}"; buildInputs = [ ncurses readline ];