about summary refs log tree commit diff
path: root/pkgs/games
diff options
context:
space:
mode:
authorPol Dellaiera <pol.dellaiera@protonmail.com>2024-05-05 16:29:38 +0200
committerGitHub <noreply@github.com>2024-05-05 16:29:38 +0200
commitd0ffc06dd6fdc390393885798dd5479d05666feb (patch)
treebcf71e453a07a53f82fe0718c35c8dded2d08269 /pkgs/games
parent827804ca9ca7295625b64df561dad5d658f28f28 (diff)
parent837003bc80832392f181105c69c8d4eaf1cde064 (diff)
Merge pull request #307598 from viraptor/gtypist-clang
gtypist: fix new clang
Diffstat (limited to 'pkgs/games')
-rw-r--r--pkgs/games/gtypist/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/games/gtypist/default.nix b/pkgs/games/gtypist/default.nix
index 43b95bacefc8d..169b0fa77db08 100644
--- a/pkgs/games/gtypist/default.nix
+++ b/pkgs/games/gtypist/default.nix
@@ -9,6 +9,8 @@ stdenv.mkDerivation rec {
     sha256 = "0xzrkkmj0b1dw3yr0m9hml2y634cc4h61im6zwcq57s7285z8fn1";
   };
 
+  CFLAGS = "-std=gnu89";
+
   nativeBuildInputs = [ makeWrapper ];
   buildInputs = [ ncurses perl fortune ]
    ++ lib.optional stdenv.isDarwin libiconv;