termcolor: fix build with GCC 13

This commit is contained in:
Jan Solanti
2024-01-09 22:57:20 +02:00
parent b8da68b207
commit 7c59bc5c45
@@ -18,6 +18,10 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake ];
cmakeFlags = [ "-DTERMCOLOR_TESTS=ON" ];
CXXFLAGS = [
# GCC 13: error: 'uint8_t' has not been declared
"-include cstdint"
];
doCheck = true;