{ stdenv, fetchurl, pkg-config, zlib, xz }: stdenv.mkDerivation { pname = "libxml2"; 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; }