desmume: fix mesa+osmesa
It builds fine, but some better testing should be done before merging.
This commit is contained in:
parent
9ee2143912
commit
7644651e62
|
@ -5,7 +5,7 @@
|
||||||
, agg, alsaLib, soundtouch, openal
|
, agg, alsaLib, soundtouch, openal
|
||||||
, desktop_file_utils
|
, desktop_file_utils
|
||||||
, gtk2, gtkglext, libglade, pangox_compat
|
, gtk2, gtkglext, libglade, pangox_compat
|
||||||
, mesa, mesa_glu, libpcap, SDL, zziplib }:
|
, mesa_glu, libpcap, SDL, zziplib }:
|
||||||
|
|
||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -21,10 +21,9 @@ stdenv.mkDerivation rec {
|
||||||
buildInputs =
|
buildInputs =
|
||||||
[ pkgconfig libtool intltool libXmu lua agg alsaLib soundtouch
|
[ pkgconfig libtool intltool libXmu lua agg alsaLib soundtouch
|
||||||
openal desktop_file_utils gtk2 gtkglext libglade pangox_compat
|
openal desktop_file_utils gtk2 gtkglext libglade pangox_compat
|
||||||
mesa mesa_glu libpcap SDL zziplib ];
|
mesa_glu libpcap SDL zziplib ];
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--disable-osmesa" # Failing on compile step
|
|
||||||
"--disable-glade" # Failing on compile step
|
"--disable-glade" # Failing on compile step
|
||||||
"--enable-openal"
|
"--enable-openal"
|
||||||
"--enable-glx"
|
"--enable-glx"
|
||||||
|
@ -46,4 +45,4 @@ stdenv.mkDerivation rec {
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
# TODO: investigate osmesa and glade
|
# TODO: investigate glade
|
||||||
|
|
Loading…
Reference in New Issue