theforceengine: 1.15.000 -> 1.22.200

This commit is contained in:
Morgan Helton
2025-03-27 10:33:07 -05:00
parent 861731dcf0
commit 7745700a00
+2 -12
View File
@@ -2,7 +2,6 @@
lib,
stdenv,
fetchFromGitHub,
fetchpatch,
SDL2,
SDL2_image,
rtaudio,
@@ -22,23 +21,15 @@ let
in
stdenv.mkDerivation rec {
pname = "theforceengine";
version = "1.15.000";
version = "1.22.200";
src = fetchFromGitHub {
owner = "luciusDXL";
repo = "TheForceEngine";
rev = "v${version}";
hash = "sha256-pcPR2KCGbyL1JABF30yJrlcLPGU2h0//Ghf7e7zYO0s=";
hash = "sha256-Mvp9VrPk36wNTUwNQT83JPOEO72Xhqmhkn3/KfZhQX4=";
};
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
@@ -58,7 +49,6 @@ stdenv.mkDerivation rec {
cmakeFlags = [
(lib.cmakeBool "ENABLE_EDITOR" true)
(lib.cmakeBool "ENABLE_FORCE_SCRIPT" true)
];
prePatch = ''