lambda-delta: fix build with clang

+4
+4
pkgs/applications/emulators/lambda-delta/default.nix
··· 13 13 14 14 nativeBuildInputs = [ autoreconfHook pkg-config ]; 15 15 buildInputs = [ SDL2 ]; 16 + env = lib.optionalAttrs stdenv.cc.isClang { 17 + NIX_CFLAGS_COMPILE = "-std=c89"; 18 + }; 19 + 16 20 17 21 configureFlags = [ "--without-SDL1" ]; 18 22