mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
theforceengine: init at 1.09.100
This commit is contained in:
parent
aca7f653ef
commit
6cf19065ad
52
pkgs/games/theforceengine/default.nix
Normal file
52
pkgs/games/theforceengine/default.nix
Normal file
@ -0,0 +1,52 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, SDL2
|
||||
, libdevil
|
||||
, rtaudio
|
||||
, rtmidi
|
||||
, glew
|
||||
, alsa-lib
|
||||
, cmake
|
||||
, pkg-config
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "theforceengine";
|
||||
version = "1.09.100";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "luciusDXL";
|
||||
repo = "TheForceEngine";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-nw9yp/StaSi5thafVT1V5YA2ZCYGWNoHUvQTpK90Foc=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
SDL2
|
||||
libdevil
|
||||
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.";
|
||||
homepage = "https://theforceengine.github.io";
|
||||
license = licenses.gpl2Only;
|
||||
maintainers = with maintainers; [ devusb ];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
};
|
||||
}
|
@ -35656,6 +35656,8 @@ with pkgs;
|
||||
inherit (darwin.apple_sdk.frameworks) Cocoa;
|
||||
};
|
||||
|
||||
theforceengine = callPackage ../games/theforceengine { };
|
||||
|
||||
tbe = libsForQt5.callPackage ../games/the-butterfly-effect { };
|
||||
|
||||
tbls = callPackage ../tools/misc/tbls { };
|
||||
|
Loading…
Reference in New Issue
Block a user