ioquake3: Remove meta.broken

It actually builds fine.
This commit is contained in:
Eelco Dolstra 2014-11-04 14:27:51 +01:00
parent c7ee917197
commit 60ad5c2b4e

View File

@ -1,15 +1,15 @@
{ stdenv, fetchurl, x11, SDL, mesa, openal }: { lib, stdenv, fetchurl, x11, SDL, mesa, openal }:
stdenv.mkDerivation { stdenv.mkDerivation {
name = "ioquake3-1.36"; name = "ioquake3-1.36";
src = fetchurl { src = fetchurl {
url = http://ioquake3.org/files/1.36/ioquake3-1.36.tar.bz2; # calls itself "1.34-rc3" url = http://ioquake3.org/files/1.36/ioquake3-1.36.tar.bz2; # calls itself "1.34-rc3"
sha256 = "008vah60z0n9h1qp373xbqvhwfbyywbbhd1np0h0yw66g0qzchzv"; sha256 = "008vah60z0n9h1qp373xbqvhwfbyywbbhd1np0h0yw66g0qzchzv";
}; };
patchFlags = "-p0"; patchFlags = "-p0";
patches = [ patches = [
# Fix for compiling on gcc 4.2. # Fix for compiling on gcc 4.2.
(fetchurl { (fetchurl {
@ -19,9 +19,9 @@ stdenv.mkDerivation {
# Do an exit() instead of _exit(). This is nice for gcov. # Do an exit() instead of _exit(). This is nice for gcov.
# Upstream also seems to do this. # Upstream also seems to do this.
./exit.patch ./exit.patch
]; ];
buildInputs = [x11 SDL mesa openal]; buildInputs = [x11 SDL mesa openal];
# Fix building on GCC 4.6. # Fix building on GCC 4.6.
@ -33,6 +33,8 @@ stdenv.mkDerivation {
installFlags="COPYDIR=$out" installFlags="COPYDIR=$out"
''; '';
meta.broken = true; meta = {
platforms = lib.platforms.linux;
maintainers = [ lib.maintainers.eelco ];
};
} }