summary refs log tree commit diff
path: root/pkgs/games/0ad
diff options
context:
space:
mode:
authorCharlotte Van Petegem <charlotte.vanpetegem@ugent.be>2022-10-24 09:28:30 +0200
committerCharlotte Van Petegem <charlotte.vanpetegem@ugent.be>2022-10-25 21:09:14 +0200
commitccd829971495b1af11970f68207da10efa6acf03 (patch)
treef53d12313bf6609f4c34e7933caa3cd65ef093e8 /pkgs/games/0ad
parent8e224632689fbce6e6572ed9ea8ea4584b803fe0 (diff)
downloadnixpkgs-ccd829971495b1af11970f68207da10efa6acf03.tar
nixpkgs-ccd829971495b1af11970f68207da10efa6acf03.tar.gz
nixpkgs-ccd829971495b1af11970f68207da10efa6acf03.tar.bz2
nixpkgs-ccd829971495b1af11970f68207da10efa6acf03.tar.lz
nixpkgs-ccd829971495b1af11970f68207da10efa6acf03.tar.xz
nixpkgs-ccd829971495b1af11970f68207da10efa6acf03.tar.zst
nixpkgs-ccd829971495b1af11970f68207da10efa6acf03.zip
zeroad: fix build
Diffstat (limited to 'pkgs/games/0ad')
-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 488ef0c91e1..7e1375a829f 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"