From 7c25efb42c7b4b33c89b2ce592a5a42cce2437de Mon Sep 17 00:00:00 2001 From: aleksana Date: Fri, 26 Dec 2025 14:58:08 +0800 Subject: [PATCH] ispell: fix build with gcc 15 --- pkgs/by-name/is/ispell/package.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/by-name/is/ispell/package.nix b/pkgs/by-name/is/ispell/package.nix index e7b97ffe11c0..08d17d88fd61 100644 --- a/pkgs/by-name/is/ispell/package.nix +++ b/pkgs/by-name/is/ispell/package.nix @@ -38,6 +38,8 @@ stdenv.mkDerivation rec { EOF ''; + env.NIX_CFLAGS_COMPILE = "-std=gnu17"; # Doesn't compile with C23 + meta = { description = "Interactive spell-checking program for Unix"; homepage = "https://www.cs.hmc.edu/~geoff/ispell.html";