summary refs log tree commit diff
path: root/pkgs/games/quake3
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-09-15 11:13:22 +0200
committerVladimír Čunát <vcunat@gmail.com>2015-09-15 12:08:24 +0200
commit21e3ff658ac2d7b7986169f31550aa5f65bb7635 (patch)
treea23f824d60d9aad34473c8828278c0fdba2dc188 /pkgs/games/quake3
parent47ad941fbfe752f679d6bc577d2408f79aee7054 (diff)
downloadnixpkgs-21e3ff658ac2d7b7986169f31550aa5f65bb7635.tar
nixpkgs-21e3ff658ac2d7b7986169f31550aa5f65bb7635.tar.gz
nixpkgs-21e3ff658ac2d7b7986169f31550aa5f65bb7635.tar.bz2
nixpkgs-21e3ff658ac2d7b7986169f31550aa5f65bb7635.tar.lz
nixpkgs-21e3ff658ac2d7b7986169f31550aa5f65bb7635.tar.xz
nixpkgs-21e3ff658ac2d7b7986169f31550aa5f65bb7635.tar.zst
nixpkgs-21e3ff658ac2d7b7986169f31550aa5f65bb7635.zip
x11: replace its usage by xlibsWrapper directly
Scilab note: the parameters already had pointed to nonexistent dirs
before this set of refactoring. But that config wasn't even used by
default.
Diffstat (limited to 'pkgs/games/quake3')
-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 ed447004345..2ad922834d3 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, gcc46 }:
+{ lib, stdenv, fetchurl, xlibsWrapper, SDL, mesa, openal, gcc46 }:
 
 stdenv.mkDerivation {
   name = "ioquake3-1.36";
@@ -25,7 +25,7 @@ stdenv.mkDerivation {
     ./botlib.patch
   ];
 
-  buildInputs = [ x11 SDL mesa openal gcc46 ];
+  buildInputs = [ xlibsWrapper SDL mesa openal gcc46 ];
 
   # Fix building on GCC 4.6.
   NIX_CFLAGS_COMPILE = "-Wno-error";