phpExtensions.xsl: fix build against php80 by disabling tests

they succeed on 7.3 and 7.4, but not 8.0
This commit is contained in:
ajs124 2021-02-08 04:05:50 +01:00
parent 220356309e
commit b8c532e061

View file

@ -520,7 +520,7 @@ lib.makeScope pkgs.newScope (self: with self; {
++ lib.optional (lib.versionOlder php.version "7.4") [ "--with-libxml-dir=${libxml2.dev}" ]; }
{ name = "xsl";
buildInputs = [ libxslt libxml2 ];
doCheck = !(lib.versionOlder php.version "7.4");
doCheck = lib.versionOlder php.version "8.0";
configureFlags = [ "--with-xsl=${libxslt.dev}" ]; }
{ name = "zend_test"; }
{ name = "zip";