summary refs log blame commit diff
path: root/pkgs/games/warsow/engine.nix
blob: e796c589290a052d48cf99811ec27d3fd62522fd (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                                           


                                            

                          


                    
                                                        


                                                                    






                                                                           






                                                                           


                                           
                    

     
                   

                      




                                                     

                       

     
                    
                                                                                       
                                       
                                

                                                         
                              
    
 
{ stdenv, lib, substituteAll, fetchurl, cmake, libogg, libvorbis, libtheora, curl, freetype
, libjpeg, libpng, SDL2, libGL, openal, zlib
}:

stdenv.mkDerivation rec {
  pname = "warsow-engine";
  version = "2.1.0";

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

  patches = [
    (substituteAll {
      src = ./libpath.patch;
      inherit zlib curl libpng libjpeg libogg libvorbis libtheora freetype;
    })
  ];

  nativeBuildInputs = [ cmake ];

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

  cmakeFlags = [ "-DQFUSION_GAME=Warsow" ];

  preConfigure = ''
    cd source/source
  '';

  installPhase = ''
    runHook preInstall

    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

    runHook postInstall
  '';

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