Fix gltron. Sinterklaas present for iElectric.

(cherry picked from commit 013705113bb95f5e43b779c94c231f4f0f3b89fc)
This commit is contained in:
Lluís Batlle i Rossell 2014-12-31 10:51:05 +01:00
parent c2af4f3ea8
commit 8ecdac1404

View file

@ -9,6 +9,11 @@ stdenv.mkDerivation rec {
patches = [ ./gentoo-prototypes.patch ];
postPatch = ''
# Fix http://sourceforge.net/p/gltron/bugs/15
sed -i /__USE_MISC/d lua/src/lib/liolib.c
'';
# The build fails, unless we disable the default -Wall -Werror
configureFlags = "--disable-warn";
@ -20,6 +25,5 @@ stdenv.mkDerivation rec {
license = stdenv.lib.licenses.gpl2Plus;
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; linux;
broken = true; # see http://sourceforge.net/p/gltron/bugs/15
};
}