{ stdenv, fetchurl, pkg-config, zlib, xz }: stdenv.mkDerivation { pname = "libxml2-2-9"; version = "2.9.14"; src = fetchurl { url = "https://download.gnome.org/sources/libxml2/2.9/libxml2-2.9.14.tar.xz"; sha256 = "sha256-YNdKJX0czsBHXnScui8hVZ5IE577pv8oIkNXx8eY3+4="; }; nativeBuildInputs = [ pkg-config ]; buildInputs = [ zlib xz ]; configureFlags = [ "--disable-static" "--without-python" ]; enableParallelBuilding = true; meta = { description = "Legacy libxml2 2.9.14, required by Tibia client"; homepage = "http://xmlsoft.org/"; license = stdenv.lib.licenses.mit; }; }