gengetopt: fix build with clang 16

+4
+4
pkgs/development/tools/misc/gengetopt/default.nix
··· 27 27 'set +o posix' 28 28 ''; 29 29 30 + env = lib.optionalAttrs stdenv.cc.isClang { 31 + CXXFLAGS = "-std=c++14"; 32 + }; 33 + 30 34 meta = { 31 35 description = "Command-line option parser generator"; 32 36