lol

coan: fix build on darwin

The configure script was failing because the `-std=c++11` flag was used
when trying to compile C.

Set the flag with CXXFLAGS instead.

+1 -4
+1 -4
pkgs/development/tools/analysis/coan/default.nix
··· 11 11 12 12 nativeBuildInputs = [ perl ]; 13 13 14 - NIX_CFLAGS_COMPILE = [ 15 - "-std=c++11" 16 - ]; 14 + CXXFLAGS = "-std=c++11"; 17 15 18 16 enableParallelBuilding = true; 19 17 ··· 22 20 ''; 23 21 24 22 meta = with lib; { 25 - broken = stdenv.isDarwin; 26 23 description = "The C preprocessor chainsaw"; 27 24 longDescription = '' 28 25 A software engineering tool for analysing preprocessor-based