summary refs log tree commit diff
path: root/pkgs/development/php-packages/mongodb
diff options
context:
space:
mode:
authorElis Hirwing <elis@hirwing.se>2021-06-03 15:06:06 +0200
committerElis Hirwing <elis@hirwing.se>2021-06-04 09:26:54 +0200
commit68eb5305ac93adb1cce777c0ae73fd29eccb6973 (patch)
treeb5094ede67986e0d787ac0da47f2a0a31125fd69 /pkgs/development/php-packages/mongodb
parent42e9a2ccfab2a96d28c3c164a6cf41fb6f769de5 (diff)
downloadnixpkgs-68eb5305ac93adb1cce777c0ae73fd29eccb6973.tar
nixpkgs-68eb5305ac93adb1cce777c0ae73fd29eccb6973.tar.gz
nixpkgs-68eb5305ac93adb1cce777c0ae73fd29eccb6973.tar.bz2
nixpkgs-68eb5305ac93adb1cce777c0ae73fd29eccb6973.tar.lz
nixpkgs-68eb5305ac93adb1cce777c0ae73fd29eccb6973.tar.xz
nixpkgs-68eb5305ac93adb1cce777c0ae73fd29eccb6973.tar.zst
nixpkgs-68eb5305ac93adb1cce777c0ae73fd29eccb6973.zip
php: Drop PHP 7.3 support
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.
Diffstat (limited to 'pkgs/development/php-packages/mongodb')
-rw-r--r--pkgs/development/php-packages/mongodb/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/php-packages/mongodb/default.nix b/pkgs/development/php-packages/mongodb/default.nix
index 95e51892f04..d0e5e545f6b 100644
--- a/pkgs/development/php-packages/mongodb/default.nix
+++ b/pkgs/development/php-packages/mongodb/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, buildPecl, lib, pcre', pkg-config, cyrus_sasl, icu64
+{ stdenv, buildPecl, lib, pcre2, pkg-config, cyrus_sasl, icu64
 , openssl, snappy, zlib, darwin }:
 
 buildPecl {
@@ -14,7 +14,7 @@ buildPecl {
     openssl
     snappy
     zlib
-    pcre'
+    pcre2
   ] ++ lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.Security;
 
   meta.maintainers = lib.teams.php.members;