scite: fixup build with gcc13

+6
+6
pkgs/applications/editors/scite/default.nix
··· 13 13 buildInputs = [ gtk2 ]; 14 14 sourceRoot = "scintilla/gtk"; 15 15 16 + CXXFLAGS = [ 17 + # GCC 13: error: 'intptr_t' does not name a type 18 + "-include cstdint" 19 + "-include system_error" 20 + ]; 21 + 16 22 buildPhase = '' 17 23 make 18 24 cd ../../lexilla/src