Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / games / uhexen2 / default.nix
blob1a43679bd127e211d76a3398bfe2fab6da3c4a4b
1 { lib, fetchgit, SDL, stdenv, libogg, libvorbis, libmad, xdelta }:
3 stdenv.mkDerivation rec {
4   pname = "uhexen2";
5   version = "1.5.9";
7   src = fetchgit {
8     url = "https://git.code.sf.net/p/uhexen2/uhexen2";
9     sha256 = "0crdihbnb92awkikn15mzdpkj1x9s34xixf1r7fxxf762m60niks";
10     rev = "4ef664bc41e3998b0d2a55ff1166dadf34c936be";
11   };
13   buildInputs = [ SDL libogg libvorbis libmad xdelta ];
15   preBuild = ''
16     makeFiles=(
17         "engine/hexen2 glh2"
18         "engine/hexen2 clean"
19         "engine/hexen2 h2"
20         "engine/hexen2/server"
21         "engine/hexenworld/client glhw"
22         "engine/hexenworld/client clean"
23         "engine/hexenworld/client hw"
24         "engine/hexenworld/server"
25         "h2patch"
26     )
27   '';
29   buildPhase = ''
30     runHook preBuild
31     for makefile in "''${makeFiles[@]}"; do
32           local flagsArray=(
33             -j$NIX_BUILD_CORES
34             SHELL=$SHELL
35             $makeFlags "''${makeFlagsArray[@]}"
36             $buildFlags "''${buildFlagsArray[@]}"
37           )
38           echoCmd 'build flags' ""''${flagsArray[@]}""
39           make  -C $makefile ""''${flagsArray[@]}""
40           unset flagsArray
41     done
42     runHook postBuild
43   '';
45   installPhase = ''
46     runHook preInstall
47     install -Dm755 engine/hexen2/{glhexen2,hexen2,server/h2ded} -t $out/bin
48     install -Dm755 engine/hexenworld/{client/glhwcl,client/hwcl,server/hwsv} -t $out/bin
49     install -Dm755 h2patch/h2patch -t $out/bin
50     runHook postInstall
51   '';
53   meta = with lib; {
54     broken = stdenv.isDarwin;
55     description = "A cross-platform port of Hexen II game";
56     longDescription = ''
57       Hammer of Thyrion (uHexen2) is a cross-platform port of Raven Software's Hexen II source.
58       It is based on an older linux port, Anvil of Thyrion.
59       HoT includes countless bug fixes, improved music, sound and video modes, opengl improvements,
60       support for many operating systems and architectures, and documentation among many others.
61     '';
62     homepage = "https://uhexen2.sourceforge.net/";
63     license = licenses.gpl2Plus;
64     maintainers = with maintainers; [ xdhampus ];
65     platforms = platforms.all;
66   };