zynaddsubfx: fix build with GCC 13
This commit is contained in:
parent
905e546fe1
commit
5746f26d7a
1 changed files with 5 additions and 0 deletions
|
@ -94,6 +94,11 @@ in stdenv.mkDerivation rec {
|
|||
# Find FLTK without requiring an OpenGL library in buildInputs
|
||||
++ lib.optional (guiModule == "fltk") "-DFLTK_SKIP_OPENGL=ON";
|
||||
|
||||
CXXFLAGS = [
|
||||
# GCC 13: error: 'uint8_t' does not name a type
|
||||
"-include cstdint"
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
nativeCheckInputs = [ cxxtest ruby ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue