nixpkgs/pkgs/development/interpreters/php/8.3.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

53 lines
610 B
Nix
Raw Normal View History

2023-12-21 20:08:26 +00:00
{ callPackage, ... }@_args:
let
2023-11-23 07:39:26 +00:00
base = callPackage ./generic.nix (_args // {
version = "8.3.3";
hash = "sha256-qvthO6eVlKI/5yL46QrUczAGEL+A50uKpS2pysLcTio=";
2023-11-23 07:39:26 +00:00
});
in
base.withExtensions ({ all, ... }: with all; ([
bcmath
calendar
curl
ctype
dom
exif
fileinfo
filter
ftp
gd
gettext
gmp
iconv
imap
intl
ldap
mbstring
mysqli
mysqlnd
opcache
openssl
pcntl
pdo
pdo_mysql
pdo_odbc
pdo_pgsql
pdo_sqlite
pgsql
posix
readline
session
simplexml
sockets
soap
sodium
sysvsem
sqlite3
tokenizer
xmlreader
xmlwriter
zip
zlib
]))