about summary refs log tree commit diff
path: root/pkgs/games/quake3
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-11-04 14:27:51 +0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-11-04 14:28:09 +0100
commit60ad5c2b4e88b446e54d44a176365429696378c2 (patch)
tree8c3c19c74760d41833269466c30ee30a2b7e063f /pkgs/games/quake3
parentc7ee9171979a5cb36944f3b6cbf392cbb312ba5c (diff)
ioquake3: Remove meta.broken
It actually builds fine.
Diffstat (limited to 'pkgs/games/quake3')
-rw-r--r--pkgs/games/quake3/game/default.nix16
1 files changed, 9 insertions, 7 deletions
diff --git a/pkgs/games/quake3/game/default.nix b/pkgs/games/quake3/game/default.nix
index 596ba595d813d..d73c8c6a4c47c 100644
--- a/pkgs/games/quake3/game/default.nix
+++ b/pkgs/games/quake3/game/default.nix
@@ -1,15 +1,15 @@
-{ stdenv, fetchurl, x11, SDL, mesa, openal }:
+{ lib, stdenv, fetchurl, x11, SDL, mesa, openal }:
 
 stdenv.mkDerivation {
   name = "ioquake3-1.36";
-  
+
   src = fetchurl {
     url = http://ioquake3.org/files/1.36/ioquake3-1.36.tar.bz2; # calls itself "1.34-rc3"
     sha256 = "008vah60z0n9h1qp373xbqvhwfbyywbbhd1np0h0yw66g0qzchzv";
   };
 
   patchFlags = "-p0";
-  
+
   patches = [
     # Fix for compiling on gcc 4.2.
     (fetchurl {
@@ -19,9 +19,9 @@ stdenv.mkDerivation {
 
     # Do an exit() instead of _exit().  This is nice for gcov.
     # Upstream also seems to do this.
-    ./exit.patch    
+    ./exit.patch
   ];
-  
+
   buildInputs = [x11 SDL mesa openal];
 
   # Fix building on GCC 4.6.
@@ -33,6 +33,8 @@ stdenv.mkDerivation {
     installFlags="COPYDIR=$out"
   '';
 
-  meta.broken = true;
-  
+  meta = {
+    platforms = lib.platforms.linux;
+    maintainers = [ lib.maintainers.eelco ];
+  };
 }