We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 300e97b + c5fbefe commit efd9668Copy full SHA for efd9668
pkgs/by-name/pr/proxsuite/package.nix
@@ -73,6 +73,12 @@ stdenv.mkDerivation (finalAttrs: {
73
# Fontconfig error: Cannot load default config file: No such file: (null)
74
env.FONTCONFIG_FILE = "${fontconfig.out}/etc/fonts/fonts.conf";
75
76
+ env.NIX_CFLAGS_COMPILE = toString (
77
+ lib.optionals stdenv.cc.isClang [
78
+ "-Wno-error=missing-template-arg-list-after-template-kw"
79
+ ]
80
+ );
81
+
82
# Fontconfig error: No writable cache directories
83
preBuild = "export XDG_CACHE_HOME=$(mktemp -d)";
84
0 commit comments