gtypist: fix new clang

New clang defaults to C standard higher than 89. Gtypist fails to
compile with that.
Explicitly set gnu89 when compiling instead.

+2
+2
pkgs/games/gtypist/default.nix
··· 9 sha256 = "0xzrkkmj0b1dw3yr0m9hml2y634cc4h61im6zwcq57s7285z8fn1"; 10 }; 11 12 nativeBuildInputs = [ makeWrapper ]; 13 buildInputs = [ ncurses perl fortune ] 14 ++ lib.optional stdenv.isDarwin libiconv;
··· 9 sha256 = "0xzrkkmj0b1dw3yr0m9hml2y634cc4h61im6zwcq57s7285z8fn1"; 10 }; 11 12 + CFLAGS = "-std=gnu89"; 13 + 14 nativeBuildInputs = [ makeWrapper ]; 15 buildInputs = [ ncurses perl fortune ] 16 ++ lib.optional stdenv.isDarwin libiconv;