From 2d4713043d9fba7b09b4fd08b3c03f5c6944dcdf Mon Sep 17 00:00:00 2001 From: "Manuel F. Schmid" <3769324+mfsch@users.noreply.github.com> Date: Thu, 19 Feb 2026 15:58:18 -0500 Subject: [PATCH] edopro: fix build with premake v5.0.0-beta8 --- pkgs/by-name/ed/edopro/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/ed/edopro/package.nix b/pkgs/by-name/ed/edopro/package.nix index de7b73e63a7a..b1cbf4532474 100644 --- a/pkgs/by-name/ed/edopro/package.nix +++ b/pkgs/by-name/ed/edopro/package.nix @@ -232,7 +232,7 @@ let # (can't use --prebuilt-core or let it build a core on its own without making core updates impossible) postPatch = '' substituteInPlace premake5.lua \ - --replace-fail 'flags "LinkTimeOptimization"' 'removeflags "LinkTimeOptimization"' + --replace-fail 'flags "LinkTimeOptimization"' 'linktimeoptimization "Off"' substituteInPlace gframe/game.cpp \ --replace-fail 'ocgcore = LoadOCGcore(Utils::GetWorkingDirectory())' 'ocgcore = LoadOCGcore("${lib.getLib ocgcore}/lib/")'