treewide: transition mesa to libGLU_combined

This commit is contained in:
Alexander V. Nikolaev
2018-02-24 17:06:49 +02:00
parent 1bc1909e5b
commit 0acec7e984
273 changed files with 572 additions and 572 deletions
+3 -3
View File
@@ -1,8 +1,8 @@
{ stdenv, fetchurl, SDL, zlib, libmpeg2, libmad, libogg, libvorbis, flac, alsaLib
, openglSupport ? false, mesa ? null
, openglSupport ? false, libGLU_combined ? null
}:
assert openglSupport -> mesa != null;
assert openglSupport -> libGLU_combined != null;
with stdenv.lib;
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
};
buildInputs = [ stdenv SDL zlib libmpeg2 libmad libogg libvorbis flac alsaLib ]
++ optional openglSupport mesa;
++ optional openglSupport libGLU_combined;
configureFlags = [ "--enable-all-engines" ];