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 12 nativeBuildInputs = [ perl ]; 13 14 - NIX_CFLAGS_COMPILE = [ 15 - "-std=c++11" 16 - ]; 17 18 enableParallelBuilding = true; 19 ··· 22 ''; 23 24 meta = with lib; { 25 - broken = stdenv.isDarwin; 26 description = "The C preprocessor chainsaw"; 27 longDescription = '' 28 A software engineering tool for analysing preprocessor-based
··· 11 12 nativeBuildInputs = [ perl ]; 13 14 + CXXFLAGS = "-std=c++11"; 15 16 enableParallelBuilding = true; 17 ··· 20 ''; 21 22 meta = with lib; { 23 description = "The C preprocessor chainsaw"; 24 longDescription = '' 25 A software engineering tool for analysing preprocessor-based