theforceengine: 1.10.000 -> 1.15.000 (#385783)

This commit is contained in:
Peder Bergebakken Sundt
2025-03-04 01:03:56 +01:00
committed by GitHub
+20 -2
View File
@@ -2,12 +2,14 @@
lib,
stdenv,
fetchFromGitHub,
fetchpatch,
SDL2,
SDL2_image,
rtaudio,
rtmidi,
glew,
alsa-lib,
angelscript,
cmake,
pkg-config,
zenity,
@@ -20,15 +22,23 @@ let
in
stdenv.mkDerivation rec {
pname = "theforceengine";
version = "1.10.000";
version = "1.15.000";
src = fetchFromGitHub {
owner = "luciusDXL";
repo = "TheForceEngine";
rev = "v${version}";
hash = "sha256-oEcjHb6HY5qxKuPoNBuobPbdi39hUUWtKSb7FbAfEpc=";
hash = "sha256-pcPR2KCGbyL1JABF30yJrlcLPGU2h0//Ghf7e7zYO0s=";
};
patches = [
# https://github.com/luciusDXL/TheForceEngine/pull/493 -- fixes finding data files outside program directory
(fetchpatch {
url = "https://github.com/luciusDXL/TheForceEngine/commit/476a5277666bfdffb33ed10bdd1177bfe8ec3a70.diff";
hash = "sha256-ZcfKIXQMcWMmnM4xfQRd/Ozl09vkQr3jUxZ5e4Mw5CU=";
})
];
nativeBuildInputs = [
cmake
pkg-config
@@ -41,6 +51,14 @@ stdenv.mkDerivation rec {
rtmidi
glew
alsa-lib
angelscript
];
hardeningDisable = [ "format" ];
cmakeFlags = [
(lib.cmakeBool "ENABLE_EDITOR" true)
(lib.cmakeBool "ENABLE_FORCE_SCRIPT" true)
];
prePatch = ''