Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

proxsuite: fix build with clang

+6
+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 + env.NIX_CFLAGS_COMPILE = toString ( 77 + lib.optionals stdenv.cc.isClang [ 78 + "-Wno-error=missing-template-arg-list-after-template-kw" 79 + ] 80 + ); 81 + 76 82 # Fontconfig error: No writable cache directories 77 83 preBuild = "export XDG_CACHE_HOME=$(mktemp -d)"; 78 84