summary refs log tree commit diff
path: root/pkgs/games/quake3/game/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/games/quake3/game/default.nix')
-rw-r--r--pkgs/games/quake3/game/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/games/quake3/game/default.nix b/pkgs/games/quake3/game/default.nix
index d73c8c6a4c47..bea117c04197 100644
--- a/pkgs/games/quake3/game/default.nix
+++ b/pkgs/games/quake3/game/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, x11, SDL, mesa, openal }:
+{ lib, stdenv, fetchurl, x11, SDL, mesa, openal, gcc }:
 
 stdenv.mkDerivation {
   name = "ioquake3-1.36";
@@ -22,7 +22,7 @@ stdenv.mkDerivation {
     ./exit.patch
   ];
 
-  buildInputs = [x11 SDL mesa openal];
+  buildInputs = [x11 SDL mesa openal gcc];
 
   # Fix building on GCC 4.6.
   NIX_CFLAGS_COMPILE = "-Wno-error";