1 { stdenv, lib, fetchurl, SDL2, SDL2_image, SDL2_ttf, SDL2_mixer
2 , SDL2_net , SDL2_gfx, zlib, physfs, curl, libxml2, libpng, pkg-config
3 , libGL, autoreconfHook }:
4 stdenv.mkDerivation rec {
9 url = "https://download.evolonline.org/manaplus/download/${version}/manaplus-${version}.tar.xz";
10 sha256 = "sha256-6NFqxUjEAp7aiIScyTOFh2tT7PfuTCKH1vTgPpTm+j0=";
14 autoreconfHook pkg-config
18 SDL2 SDL2_image SDL2_ttf SDL2_mixer SDL2_net SDL2_gfx zlib
19 physfs curl libxml2 libpng libGL
22 configureFlags = [ "--with-sdl2" "--without-dyecmd" ];
24 enableParallelBuilding = true;
27 maintainers = [ lib.maintainers.lheckemann ];
28 description = "A free OpenSource 2D MMORPG client";
29 homepage = "https://manaplus.org/";
30 license = lib.licenses.gpl2;