scite: fixup build with gcc13

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