3
0
Fork 0
forked from mirrors/nixpkgs

phpPackages.apcu_bc: fix build with php73

This commit is contained in:
Izorkin 2018-12-10 17:37:18 +03:00 committed by Franz Pletz
parent c120d94071
commit 23190fb3a9
No known key found for this signature in database
GPG key ID: 846FDED7792617B4

View file

@ -23,7 +23,7 @@ let
apcu_bc = buildPecl {
name = "apcu_bc-1.0.4";
sha256 = "1raww7alwayg9nk0akly1mdrjypxlwg8safnmaczl773cwpw5cbw";
buildInputs = [ apcu pkgs.pcre ];
buildInputs = [ apcu (if isPhp73 then pkgs.pcre2 else pkgs.pcre) ];
};
ast = buildPecl {