summary refs log tree commit diff
path: root/pkgs/games/warsow/engine.nix
blob: c42aa3198259185f9d2939444a7dd9f1b2639b7d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{ stdenv, lib, fetchurl, cmake, libogg, libvorbis, libtheora, curl, freetype
, libjpeg, libpng, SDL2, libGL, openal, zlib
}:

let
  # The game loads all those via dlopen().
  libs = lib.mapAttrs (name: x: lib.getLib x) {
    inherit zlib curl libpng libjpeg libogg libvorbis libtheora freetype;
  };

in stdenv.mkDerivation (libs // rec {
  name = "warsow-engine-${version}";
  version = "2.1.0";

  src = fetchurl {
    url = "http://slice.sh/warsow/warsow_21_sdk.tar.gz";
    sha256 = "0fj5k7qpf6far8i1xhqxlpfjch10zj26xpilhp95aq2yiz08pj4r";
  };

  nativeBuildInputs = [ cmake ];

  buildInputs = [
    libogg libvorbis libtheora curl freetype libjpeg SDL2 libGL openal zlib
    libpng
  ];

  patches = [ ./libpath.patch ];
  postPatch = ''
    cd source/source
    substituteAllInPlace gameshared/q_arch.h
  '';

  cmakeFlags = [ "-DQFUSION_GAME=Warsow" ];

  enableParallelBuilding = true;

  installPhase = ''
    mkdir -p $out/lib
    cp -r libs $out/lib/warsow
    for i in warsow.* wsw_server.* wswtv_server.*; do
      install -Dm755 "$i" "$out/bin/''${i%.*}"
    done
  '';

  meta = with stdenv.lib; {
    description = "Multiplayer FPS game designed for competitive gaming (engine only)";
    homepage = http://www.warsow.net;
    license = licenses.gpl2;
    maintainers = with maintainers; [ astsmtl abbradar ];
    platforms = platforms.linux;
    broken = stdenv.isAarch64;
  };
})