BefatorNix/libxml2.nix
2025-08-15 00:04:14 +02:00

25 lines
652 B
Nix

{stdenv, fetchFromGitLab, autoreconfHook, libtool}: stdenv.mkDerivation rec {
pname = "libxml2";
version = "2.7.6";
src = fetchFromGitLab {
domain = "gitlab.gnome.org";
owner = "GNOME";
repo = pname;
rev = "v" + version;
hash = "sha256-5+IWJMbqqcCPJKfDOHdRGv62XbUPOTjp9ZhsqbbHTeg=";
};
#buildInputs = [autoconf269 automake];
buildInputs = [autoreconfHook];
patchPhase = ''
export ACLOCAL_PATH=${libtool}/share/aclocal:$ACLOCAL_PATH
export CFLAGS="-Wno-incompatible-pointer-types"
'';
/*configurePhase = ''
autoreconf
./configure
'';*/
}