php.extensions.apcu_bc: Deinit due to broken in all attributes after php74 deprecation

This commit is contained in:
Elis Hirwing 2022-05-24 21:05:50 +02:00
parent 1430c4b0ed
commit c2cee3f76e
No known key found for this signature in database
GPG key ID: D57EFA625C9A925F
2 changed files with 0 additions and 26 deletions

View file

@ -1,24 +0,0 @@
{ buildPecl, lib, pcre2, php }:
buildPecl {
pname = "apcu_bc";
version = "1.0.5";
sha256 = "0ma00syhk2ps9k9p02jz7rii6x3i2p986il23703zz5npd6y9n20";
peclDeps = [ php.extensions.apcu ];
buildInputs = [ pcre2 ];
postInstall = ''
mv $out/lib/php/extensions/apc.so $out/lib/php/extensions/apcu_bc.so
'';
meta = with lib; {
description = "APCu Backwards Compatibility Module";
license = licenses.php301;
homepage = "https://pecl.php.net/package/apcu_bc";
maintainers = teams.php.members;
broken = versionAtLeast php.version "8";
};
}

View file

@ -196,8 +196,6 @@ lib.makeScope pkgs.newScope (self: with self; {
apcu = callPackage ../development/php-packages/apcu { };
apcu_bc = callPackage ../development/php-packages/apcu_bc { };
ast = callPackage ../development/php-packages/ast { };
blackfire = pkgs.callPackage ../development/tools/misc/blackfire/php-probe.nix { inherit php; };