tree-wide: SDL may not have a .dev

+2 -2
+2 -2
pkgs/games/zaz/default.nix
··· 24 pkg-config 25 ]; 26 buildInputs = [ 27 - SDL.dev 28 SDL_image 29 mesa 30 libtheora ··· 35 ]; 36 37 # Fix SDL include problems 38 - NIX_CFLAGS_COMPILE="-I${SDL.dev}/include/SDL -I${SDL_image}/include/SDL"; 39 # Fix linking errors 40 makeFlags = [ 41 "ZAZ_LIBS+=-lSDL"
··· 24 pkg-config 25 ]; 26 buildInputs = [ 27 + (lib.getDev SDL) 28 SDL_image 29 mesa 30 libtheora ··· 35 ]; 36 37 # Fix SDL include problems 38 + NIX_CFLAGS_COMPILE="-I${lib.getDev SDL}/include/SDL -I${SDL_image}/include/SDL"; 39 # Fix linking errors 40 makeFlags = [ 41 "ZAZ_LIBS+=-lSDL"