Merge pull request #311686 from patka-123/fix-zend-test

phpExtensions.zend_test: fix build
This commit is contained in:
Pol Dellaiera 2024-05-17 21:56:31 +02:00 committed by GitHub
commit 244f3ca611
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -674,7 +674,11 @@ in {
env.NIX_CFLAGS_COMPILE = toString [ "-I../.." "-DHAVE_DOM" ];
configureFlags = [ "--with-xsl=${libxslt.dev}" ];
}
{ name = "zend_test"; }
{
name = "zend_test";
internalDeps = [ php.extensions.dom ];
env.NIX_CFLAGS_COMPILE = "-I${libxml2.dev}/include/libxml2";
}
{
name = "zip";
buildInputs = [ libzip pcre2 ];