tclPackages.yajl-tcl: fix for GCC 15

GCC 15 issue: https://github.com/NixOS/nixpkgs/issues/475479
Upstream issue: https://github.com/flightaware/yajl-tcl/pull/45
This commit is contained in:
Francesco Gazzetta
2026-03-05 14:15:06 +01:00
parent 9ae2cc76d7
commit 009bccbfbf
@@ -29,6 +29,11 @@ mkTclDerivation rec {
yajl
];
buildFlags = [
# https://github.com/flightaware/yajl-tcl/pull/45
"CFLAGS=-std=gnu17"
];
meta = {
description = "Tcl bindings for Yet Another JSON Library";
homepage = "https://github.com/flightaware/yajl-tcl";