11 , python39 # crossfire-server relies on a parser wich was removed in python >3.9
19 stdenv.mkDerivation rec {
20 pname = "crossfire-server";
24 url = "http://svn.code.sf.net/p/crossfire/code/server/trunk/";
30 ./add-cstdint-include-to-crossfire-server.patch
33 nativeBuildInputs = [ autoconf automake libtool flex perl check pkg-config python39 ];
34 hardeningDisable = [ "format" ];
37 ln -s ${arch} lib/arch
38 ln -s ${maps} lib/maps
42 configureFlags = [ "--with-python=${python39}" ];
45 ln -s ${maps} "$out/share/crossfire/maps"
49 description = "Server for the Crossfire free MMORPG";
50 homepage = "http://crossfire.real-time.com/";
51 license = licenses.gpl2Plus;
52 platforms = platforms.linux;
53 maintainers = with maintainers; [ ToxicFrog ];