Merge #243466: perl536Packages.XMLLibXML: fix broken test

...into staging
This commit is contained in:
Vladimír Čunát 2023-07-17 14:41:13 +02:00
commit 90eee4f2a3
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -27608,14 +27608,18 @@ with self; {
XMLLibXML = buildPerlPackage {
pname = "XML-LibXML";
version = "2.0207";
version = "2.0208";
src = fetchurl {
url = "mirror://cpan/authors/id/S/SH/SHLOMIF/XML-LibXML-2.0207.tar.gz";
hash = "sha256-kDQ2yYWYdb71WTJDquhc7TKa0PtLV7v0WXXjJUfFDBU=";
url = "mirror://cpan/authors/id/S/SH/SHLOMIF/XML-LibXML-2.0208.tar.gz";
hash = "sha256-DABrA7+NDrUx+1a9o64VdUylbYiN17noBauesZ1f1lM=";
};
SKIP_SAX_INSTALL = 1;
buildInputs = [ AlienBuild AlienLibxml2 ]
++ lib.optionals stdenv.isDarwin (with pkgs; [ libiconv zlib ]);
# Remove test that fails after LibXML 2.11 upgrade
postPatch = ''
rm t/35huge_mode.t
'';
propagatedBuildInputs = [ XMLSAX ];
meta = {
description = "Perl Binding for libxml2";