about summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2022-10-26 06:07:02 -0500
committerGitHub <noreply@github.com>2022-10-26 06:07:02 -0500
commitc3cf258cdb438fd7a2a4db2d507f7d15e2ee7a93 (patch)
tree0dcaade861059e2d3f09270bda0e5726c2b82d65 /pkgs/games
parent85804486b84d56bba9f0f7060652fef851503b03 (diff)
parentccd829971495b1af11970f68207da10efa6acf03 (diff)
Merge pull request #197504 from chvp/fix-zeroad-build
zeroad: fix build
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/0ad/game.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/games/0ad/game.nix b/pkgs/games/0ad/game.nix
index 488ef0c91e17f..7e1375a829f97 100644
--- a/pkgs/games/0ad/game.nix
+++ b/pkgs/games/0ad/game.nix
@@ -43,9 +43,9 @@ stdenv.mkDerivation rec {
   ] ++ lib.optional withEditor wxGTK;
 
   NIX_CFLAGS_COMPILE = toString [
-    "-I${xorgproto}/include/X11"
-    "-I${libX11.dev}/include/X11"
-    "-I${libXcursor.dev}/include/X11"
+    "-I${xorgproto}/include"
+    "-I${libX11.dev}/include"
+    "-I${libXcursor.dev}/include"
     "-I${SDL2}/include/SDL2"
     "-I${fmt.dev}/include"
     "-I${nvidia-texture-tools.dev}/include"