Merge #279694: barrier: fix 'uint8_t' is not a member of 'std'

...into staging-next
This commit is contained in:
Vladimír Čunát 2024-01-09 12:03:09 +01:00
commit d8364a95c7
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA

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 ];