tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
darwin.text_cmds: fix build with clang 16
Randy Eckenrode
2 years ago
daa4cd2c
bed56440
+6
-1
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
darwin
apple-source-releases
text_cmds
default.nix
+6
-1
pkgs/os-specific/darwin/apple-source-releases/text_cmds/default.nix
···
20
done
21
'';
22
23
-
env.NIX_CFLAGS_COMPILE = toString [ "-Wno-error=format-security" ]; # hardeningDisable doesn't cut it
0
0
0
0
0
24
25
meta = {
26
platforms = lib.platforms.darwin;
···
20
done
21
'';
22
23
+
env.NIX_CFLAGS_COMPILE = toString [
24
+
# hardeningDisable doesn't cut it
25
+
"-Wno-error=format-security"
26
+
# Required to build with clang 16
27
+
"-Wno-error=deprecated-non-prototype"
28
+
];
29
30
meta = {
31
platforms = lib.platforms.darwin;