perl-XML-LibXML: update and avoid failing tests

The test failures were caused by #29431: libxml-2.9.4 -> 2.9.5
This commit is contained in:
Vladimír Čunát 2017-09-17 20:22:14 +02:00
parent 96d15eaddb
commit c88fa59559
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -15662,14 +15662,19 @@ let self = _self // overrides; _self = with self; {
};
XMLLibXML = buildPerlPackage rec {
name = "XML-LibXML-2.0122";
name = "XML-LibXML-2.0129";
src = fetchurl {
url = "mirror://cpan/authors/id/S/SH/SHLOMIF/${name}.tar.gz";
sha256 = "0llgkgifcw7zz7r7f2jiqryi5axymmd3fwzp4aa5gk6j37w66xkn";
sha256 = "0rmk6vysfgcn8434wyydd56midgshly37wx7c50ch038l2djd82w";
};
SKIP_SAX_INSTALL = 1;
buildInputs = [ pkgs.libxml2 ];
propagatedBuildInputs = [ XMLSAX ];
# https://rt.cpan.org/Public/Bug/Display.html?id=122958
preCheck = ''
rm t/32xpc_variables.t t/48_reader_undef_warning_on_empty_str_rt106830.t
'';
};
XMLLibXMLSimple = buildPerlPackage {