bibtool: fix build with GCC >= 14 (#503132)

This commit is contained in:
Yohann Boniface
2026-03-24 22:32:27 +00:00
committed by GitHub
+4
View File
@@ -17,6 +17,10 @@ stdenv.mkDerivation (finalAttrs: {
# Perl for running test suite.
buildInputs = [ perl ];
# Uses K&R function definitions, which are not supported by GCC >= 14.
# https://github.com/ge-ne/bibtool/pull/96
env.NIX_CFLAGS_COMPILE = "-std=gnu89";
installTargets = [
"install"
"install.man"