nixpkgs/pkgs/games/theforceengine/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
1.0 KiB
Nix
Raw Normal View History

2023-02-09 02:19:55 +00:00
{ lib
, stdenv
, fetchFromGitHub
, SDL2
2023-09-26 02:43:21 +00:00
, SDL2_image
2023-02-09 02:19:55 +00:00
, rtaudio
, rtmidi
, glew
, alsa-lib
, cmake
, pkg-config
}:
stdenv.mkDerivation rec {
pname = "theforceengine";
2023-09-26 02:43:21 +00:00
version = "1.09.540";
2023-02-09 02:19:55 +00:00
src = fetchFromGitHub {
owner = "luciusDXL";
repo = "TheForceEngine";
rev = "v${version}";
2023-09-26 02:43:21 +00:00
sha256 = "sha256-s54X6LZdk7daIlQPHyRBxc8MLS6bzkkypi4m1m+xK80=";
2023-02-09 02:19:55 +00:00
};
nativeBuildInputs = [
cmake
pkg-config
];
buildInputs = [
SDL2
2023-09-26 02:43:21 +00:00
SDL2_image
2023-02-09 02:19:55 +00:00
rtaudio
rtmidi
glew
alsa-lib
];
prePatch = ''
# use nix store path instead of hardcoded /usr/share for support data
substituteInPlace TheForceEngine/TFE_FileSystem/paths-posix.cpp \
--replace "/usr/share" "$out/share"
'';
meta = with lib; {
description = "Modern \"Jedi Engine\" replacement supporting Dark Forces, mods, and in the future, Outlaws";
mainProgram = "theforceengine";
2023-02-09 02:19:55 +00:00
homepage = "https://theforceengine.github.io";
license = licenses.gpl2Only;
maintainers = with maintainers; [ devusb ];
platforms = [ "x86_64-linux" ];
};
}