libcutl: fix the build

Moved back to C++14 where dynamic exception specifications are deprecated but still present.

Darwin is marked as broken since another issue seems to be present.

ZHF: #172160

+3
+3
pkgs/development/libraries/libcutl/default.nix
··· 14 14 homepage = "https://codesynthesis.com/projects/libcutl/"; 15 15 changelog = "https://git.codesynthesis.com/cgit/libcutl/libcutl/plain/NEWS?h=${version}"; 16 16 platforms = platforms.all; 17 + broken = stdenv.isDarwin; 17 18 maintainers = with maintainers; [ ]; 18 19 license = licenses.mit; 19 20 }; ··· 26 27 27 28 buildInputs = [ xercesc ]; 28 29 enableParallelBuilding = true; 30 + 31 + NIX_CFLAGS_COMPILE = [ "-std=c++14" ]; 29 32 }