tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
gengetopt: fix build with clang 16
Weijia Wang
2 years ago
e5f3d587
32da89a1
+4
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
misc
gengetopt
default.nix
+4
pkgs/development/tools/misc/gengetopt/default.nix
···
27
'set +o posix'
28
'';
29
0
0
0
0
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