Skip to content

Commit

Permalink
pkgs(proj): fixup build with gcc13
Browse files Browse the repository at this point in the history
  • Loading branch information
imincik committed Jan 19, 2024
1 parent 77dce4d commit f65286d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkgs/proj/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ stdenv.mkDerivation (finalAttrs: {
"-DNLOHMANN_JSON_ORIGIN=external"
"-DEXE_SQLITE3=${buildPackages.sqlite}/bin/sqlite3"
];
CXXFLAGS = [
# GCC 13: error: 'int64_t' in namespace 'std' does not name a type
"-include cstdint"
];

preCheck =
let
Expand Down

0 comments on commit f65286d

Please sign in to comment.