Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / games / fteqw / generic.nix
bloba525cf5a6c445512633bbe6f3a2d1fdf1eaa88e6
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 = "unstable-2023-08-03";
19   src = fetchFromGitHub {
20     owner = "fte-team";
21     repo = "fteqw";
22     rev = "3adec5d0a53ba9ae32a92fc0a805cf6d5ec107fb";
23     hash = "sha256-p/U02hwKI+YqlVXIS/7+gujknNDLr5L53unjvG5qLJU=";
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   };