php-packages: remove unused checkXXX options from buildPecl derivations

buildPecl overwrites the checkPhase like this:

  checkPhase = "NO_INTERACTON=yes make test";

Thus none of the checkXXX options set in nix are actually used.
This commit is contained in:
Wolfgang Walther
2024-08-19 22:53:10 +02:00
parent e3244e9ff0
commit 755c316f38
2 changed files with 0 additions and 6 deletions
@@ -38,11 +38,6 @@ buildPecl {
buildInputs = [ pcre2 ];
doCheck = true;
checkTarget = "test";
checkFlagsArray = [
"REPORT_EXIT_STATUS=1"
"NO_INTERACTION=1"
];
makeFlags = [ "phpincludedir=$(dev)/include" ];
outputs = [
"out"
@@ -20,7 +20,6 @@ buildPecl {
};
doCheck = true;
checkTarget = "test";
zendExtension = true;