forked from mirrors/nixpkgs
php: Drop declarations of internalDeps for json
This commit is contained in:
parent
5d409065a4
commit
1cd3f3f1fe
|
@ -16,7 +16,6 @@ buildPecl {
|
||||||
configureFlags = [ "--with-couchbase" ];
|
configureFlags = [ "--with-couchbase" ];
|
||||||
|
|
||||||
buildInputs = [ libcouchbase zlib ];
|
buildInputs = [ libcouchbase zlib ];
|
||||||
internalDeps = lib.optionals (lib.versionOlder php.version "8.0") [ php.extensions.json ];
|
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
(substituteAll {
|
(substituteAll {
|
||||||
|
|
|
@ -8,8 +8,6 @@ buildPecl {
|
||||||
|
|
||||||
buildInputs = [ pcre2 ];
|
buildInputs = [ pcre2 ];
|
||||||
|
|
||||||
internalDeps = lib.optionals (lib.versionOlder php.version "8.0") [ php.extensions.json ];
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "An extension providing efficient data structures for PHP";
|
description = "An extension providing efficient data structures for PHP";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
|
|
|
@ -8,8 +8,6 @@ buildPecl {
|
||||||
|
|
||||||
internalDeps = with php.extensions; [
|
internalDeps = with php.extensions; [
|
||||||
session
|
session
|
||||||
] ++ lib.optionals (lib.versionOlder php.version "8.0") [
|
|
||||||
json
|
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
Loading…
Reference in a new issue