about summary refs log tree commit diff
path: root/pkgs/games/quake3/wrapper/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/games/quake3/wrapper/default.nix')
-rw-r--r--pkgs/games/quake3/wrapper/default.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/games/quake3/wrapper/default.nix b/pkgs/games/quake3/wrapper/default.nix
index a15efc77c2cb5..84d93cefa21c9 100644
--- a/pkgs/games/quake3/wrapper/default.nix
+++ b/pkgs/games/quake3/wrapper/default.nix
@@ -1,11 +1,14 @@
-{stdenv, fetchurl, game, paks, mesa, name, description}:
+{stdenv, fetchurl, game, paks, mesa, name, description, makeWrapper}:
 
 stdenv.mkDerivation {
   builder = ./builder.sh;
-  inherit game paks mesa name;
+
+  buildInputs = [makeWrapper];
   
-  mesaSwitch = ../../../build-support/opengl/mesa-switch.sh;
+  inherit game paks mesa name;
 
+  gcc = stdenv.gcc.gcc;
+  
   meta = {
     inherit description;
   };