summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2022-10-30 00:22:54 +0100
committerBjørn Forsman <bjorn.forsman@gmail.com>2022-10-30 11:19:50 +0100
commit4cef88b8526cd9de2eb742fea179e169ed7d8a7b (patch)
tree657d9342b35a9b1b68323475f7adfdba2ee288a5
parent4eb6161eeeb7c35647fe9dd230c5a2e4028614db (diff)
downloadnixpkgs-4cef88b8526cd9de2eb742fea179e169ed7d8a7b.tar
nixpkgs-4cef88b8526cd9de2eb742fea179e169ed7d8a7b.tar.gz
nixpkgs-4cef88b8526cd9de2eb742fea179e169ed7d8a7b.tar.bz2
nixpkgs-4cef88b8526cd9de2eb742fea179e169ed7d8a7b.tar.lz
nixpkgs-4cef88b8526cd9de2eb742fea179e169ed7d8a7b.tar.xz
nixpkgs-4cef88b8526cd9de2eb742fea179e169ed7d8a7b.tar.zst
nixpkgs-4cef88b8526cd9de2eb742fea179e169ed7d8a7b.zip
openrw: use xorg.* packages directly instead of xlibsWrapper indirection
Tested as no material change in `out` output with `diffoscope`.
-rw-r--r--pkgs/games/openrw/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/games/openrw/default.nix b/pkgs/games/openrw/default.nix
index 95ec3d64cfb..cd7d9cc1ae0 100644
--- a/pkgs/games/openrw/default.nix
+++ b/pkgs/games/openrw/default.nix
@@ -8,7 +8,6 @@
 , bullet
 , glm
 , libmad
-, xlibsWrapper
 , openal
 , SDL2
 , boost
@@ -36,7 +35,7 @@ stdenv.mkDerivation {
   nativeBuildInputs = [ cmake ];
 
   buildInputs = [
-    sfml libGLU libGL bullet glm libmad xlibsWrapper openal SDL2 boost ffmpeg
+    sfml libGLU libGL bullet glm libmad openal SDL2 boost ffmpeg
   ] ++ lib.optionals stdenv.isDarwin [ OpenAL Cocoa ];
 
   meta = with lib; {