anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / games / fteqw / generic.nix
blob2d83b8b2af81e605ebb6bd5e8368d3d1187e8bf1
1 { lib
2 , fetchFromGitHub
3 , stdenv
4 , libopus
5 , xorg
6 , pname
7 , releaseFile ? pname
8 , buildFlags
9 , buildInputs
10 , nativeBuildInputs ? []
11 , postFixup ? ""
12 , description
13 , ... }:
15 stdenv.mkDerivation {
16   inherit pname buildFlags buildInputs nativeBuildInputs postFixup;
17   version = "0-unstable-2024-04-13";
19   src = fetchFromGitHub {
20     owner = "fte-team";
21     repo = "fteqw";
22     rev = "1f9f3635f0aef3b2eed6b40e35fcf6223c6ad533";
23     hash = "sha256-AgTkkP8pT6yioIcVNpxmfCFF0M+7BGx3TXgQSkOgfPI=";
24   };
26   makeFlags = [
27     "PKGCONFIG=$(PKG_CONFIG)"
28     "-C" "engine"
29   ];
31   enableParallelBuilding = true;
32   postPatch = ''
33     substituteInPlace ./engine/Makefile \
34       --replace "I/usr/include/opus" "I${libopus.dev}/include/opus"
35     substituteInPlace ./engine/gl/gl_vidlinuxglx.c \
36       --replace 'Sys_LoadLibrary("libXrandr"' 'Sys_LoadLibrary("${xorg.libXrandr}/lib/libXrandr.so"'
37   '';
39   installPhase = ''
40     runHook preInstall
42     install -Dm755 engine/release/${releaseFile} $out/bin/${pname}
44     runHook postInstall
45   '';
47   meta = with lib; {
48     inherit description;
49     homepage = "https://fteqw.org";
50     longDescription = ''
51       FTE is a game engine baed on QuakeWorld able to
52       play games such as Quake 1, 2, 3, and Hexen 2.
53       It includes various features such as extended map
54       limits, vulkan and OpenGL renderers, a dedicated
55       server, and fteqcc, for easier QuakeC development
56     '';
57     maintainers = with maintainers; [ necrophcodr ];
58     license = licenses.gpl2Plus;
59     platforms = platforms.linux;
60   };