lol

mecab: fix build with clang 16

Force the language mode to C++14. mecab-nodic uses several features that
have been removed from C++17.

+4
+4
pkgs/tools/text/mecab/base.nix
··· 15 15 "--with-charset=utf8" 16 16 ]; 17 17 18 + # mecab uses several features that have been removed in C++17. 19 + # Force the language mode to C++14, so that it can compile with clang 16. 20 + makeFlags = [ "CXXFLAGS=-std=c++14" ]; 21 + 18 22 doCheck = true; 19 23 }