tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
proxsuite: fix build with clang
Weijia Wang
1 year ago
c5fbefec
9ceb1173
+6
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
pr
proxsuite
package.nix
+6
pkgs/by-name/pr/proxsuite/package.nix
···
73
73
# Fontconfig error: Cannot load default config file: No such file: (null)
74
74
env.FONTCONFIG_FILE = "${fontconfig.out}/etc/fonts/fonts.conf";
75
75
76
76
+
env.NIX_CFLAGS_COMPILE = toString (
77
77
+
lib.optionals stdenv.cc.isClang [
78
78
+
"-Wno-error=missing-template-arg-list-after-template-kw"
79
79
+
]
80
80
+
);
81
81
+
76
82
# Fontconfig error: No writable cache directories
77
83
preBuild = "export XDG_CACHE_HOME=$(mktemp -d)";
78
84