gengetopt: fix build with clang 16

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