The libxml2 library built and packaged for the Zig build system. These are not Zig language bindings to the library.
by mitchellhC
2 of 6 standards met
Repository: mitchellh/zig-build-libxml2. Description: The libxml2 library built and packaged for the Zig build system. These are not Zig language bindings to the library. Stars: 19, Forks: 12. Primary language: C. Languages: C (44.9%), RPGLE (35.9%), Python (9%), HTML (4.9%), Shell (1.6%). License: MIT. Open PRs: 0, open issues: 1. Last activity: 1y ago. Community health: 42%. Top contributors: mitchellh.
Last 12 weeks · 0 commits
There are two commits in this PR. The first is just a one-line update to adapt to a recent API change (merged to master, but the latest tarball on the download page hasn't caught up yet at the time of writing). While I was making that change, I realized that several recent package manager improvements should actually make it possible to completely remove the vendored upstream sources and instead fetch and use an upstream release tarball directly: this is the second commit of this PR. This does have the disadvantage that the resulting uncompressed size of the project and its dependencies is larger, since currently this repository is removing some irrelevant parts of the vendored upstream distribution, but it also obviates the need for users to manually verify that the upstream contents match. ~~Unfortunately, I don't have any experience using Nix, so I haven't updated that part yet. If I get a chance to try it out and learn how it works, I'll update this PR with changes there as well.~~ Update: done