68eb5305ac
PHP 7.3 won't be supported by upstream for the entire life cycle of the 21.11 release. Also drop the pcre' alias since it isn't needed anymore since we don't need different pcre versions anymore.
19 lines
420 B
Nix
19 lines
420 B
Nix
{ 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.maintainers = lib.teams.php.members;
|
|
meta.broken = lib.versionAtLeast php.version "8";
|
|
}
|