3
0
Fork 0
forked from mirrors/nixpkgs

XMLLibXML: 2.0129 -> 2.0132 fixes failing tests & CVE-2017-10672

Issue is described in the cpan RT [1]. Patch was submitted via a GitHub PR
[2].

[1] https://rt.cpan.org/Public/Bug/Display.html?id=122958
[2] https://github.com/shlomif/perl-XML-LibXML/pull/8
This commit is contained in:
Andreas Rammhold 2017-11-20 00:12:32 +01:00
parent b8f7027360
commit 1be0330c81
No known key found for this signature in database
GPG key ID: E432E410B5E48C86

View file

@ -15879,10 +15879,10 @@ let self = _self // overrides; _self = with self; {
};
XMLLibXML = buildPerlPackage rec {
name = "XML-LibXML-2.0129";
name = "XML-LibXML-2.0132";
src = fetchurl {
url = "mirror://cpan/authors/id/S/SH/SHLOMIF/${name}.tar.gz";
sha256 = "0rmk6vysfgcn8434wyydd56midgshly37wx7c50ch038l2djd82w";
sha256 = "0xnl281hb590i287fxpl947f1s4zl9dnvc4ajvsqi89w23im453j";
};
SKIP_SAX_INSTALL = 1;
buildInputs = [ pkgs.libxml2 ];
@ -15890,7 +15890,7 @@ let self = _self // overrides; _self = with self; {
# 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
rm t/32xpc_variables.t
'';
};