Unverified Commit 40430a6a authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #310188 from TomaSajt/openlierox

openlierox: 0.58rc3 -> 0.58_rc5, unbreak, refactor, adopt
parents fe3bf65d 6b5513c8
Loading
Loading
Loading
Loading
+62 −25
Original line number Diff line number Diff line
{ lib, stdenv, fetchurl, libX11, xorgproto, gd, SDL, SDL_image, SDL_mixer, zlib
, libxml2, pkg-config, curl, cmake, libzip }:
{
  lib,
  stdenv,
  fetchFromGitHub,
  cmake,
  pkg-config,
  curl,
  gd,
  libX11,
  libxml2,
  libzip,
  SDL,
  SDL_image,
  SDL_mixer,
  zlib,
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
  pname = "openlierox";
  version = "0.58rc3";
  version = "0.58_rc5";

  src = fetchurl {
    url = "mirror://sourceforge/openlierox/OpenLieroX_0.58_rc3.src.tar.bz2";
    sha256 = "1k35xppfqi3qfysv81xq3hj4qdy9j2ciinbkfdcmwclcsf3nh94z";
  src = fetchFromGitHub {
    owner = "albertz";
    repo = "openlierox";
    rev = finalAttrs.version;
    hash = "sha256-4ofjroEHlfrQitc7M+YTNWut0LGgntgQoOeBWU8nscY=";
  };

  env.NIX_CFLAGS_COMPILE = "-I${libxml2.dev}/include/libxml2 -std=c++98 -Wno-error";
  postPatch = ''
    sed 1i'#include <cstdint>' -i src/common/s*x.cpp
    sed 1i'#include <libxml/parser.h>' -i include/XMLutils.h
    substituteInPlace src/common/StringUtils.cpp \
        --replace-fail "xmlErrorPtr" "const xmlError*"
  '';

  # The breakpad fails to build on x86_64, and it's only to report bugs upstream
  cmakeFlags = [ "-DBREAKPAD=0" ];
  strictDeps = true;

  preConfigure = ''
    cmakeFlags="$cmakeFlags -DSYSTEM_DATA_DIR=$out/share"
  '';
  nativeBuildInputs = [
    cmake
    pkg-config
    SDL
  ];

  patchPhase = ''
    sed -i s,curl/types.h,curl/curl.h, include/HTTP.h src/common/HTTP.cpp
  '';
  buildInputs = [
    curl
    gd
    libX11
    libxml2
    libzip
    SDL
    SDL_image
    SDL_mixer
    zlib
  ];

  cmakeFlags = [ "-DSYSTEM_DATA_DIR=${placeholder "out"}/share" ];

  env.NIX_CFLAGS_COMPILE = "-I${lib.getDev libxml2}/include/libxml2";

  installPhase = ''
    mkdir -p $out/bin $out/share/OpenLieroX
    cp bin/* $out/bin
    cp -R ../share/gamedir/* $out/share/OpenLieroX
  '';
    runHook preInstall

  nativeBuildInputs = [ cmake pkg-config curl ];
  buildInputs = [ libX11 xorgproto gd SDL SDL_image SDL_mixer zlib libxml2
    libzip ];
    install -Dm755 bin/* -t $out/bin

    mkdir -p $out/share/OpenLieroX
    cp -r ../share/gamedir/* $out/share/OpenLieroX

    runHook postInstall
  '';

  meta = {
    homepage = "http://openlierox.net";
    description = "Real-time game with Worms-like shooting";
    homepage = "http://openlierox.net";
    license = lib.licenses.lgpl2Plus;
    mainProgram = "openlierox";
    maintainers = with lib.maintainers; [ tomasajt ];
    platforms = lib.platforms.linux;
  };
}
})