barrier: fix 'uint8_t' is not a member of 'std'

This commit is contained in:
Luna Nova 2024-01-08 13:46:51 -08:00
parent fb8c15911e
commit 52114b92d2
No known key found for this signature in database

View File

@ -26,6 +26,11 @@ mkDerivation rec {
})
];
CXXFLAGS = [
# error: 'uint8_t' is not a member of 'std'; did you mean 'wint_t'?
"-include cstdint"
];
buildInputs = [ curl xorg.libX11 xorg.libXext xorg.libXtst avahiWithLibdnssdCompat qtbase ];
nativeBuildInputs = [ cmake wrapGAppsHook ];