webos.novacmd: fix build with gcc 15

This commit is contained in:
Sigmanificient
2026-05-13 00:33:41 +02:00
parent 8041b02056
commit e0015b06ae
@@ -52,6 +52,11 @@ stdenv.mkDerivation rec {
postPatch = ''
substituteInPlace CMakeLists.txt \
--replace-fail "cmake_minimum_required(VERSION 2.8.7)" "cmake_minimum_required(VERSION 3.10)"
# Fix build with newer C standards
substituteInPlace include/platform.h \
--replace-fail "typedef int bool;" ""
'';
meta = {