2021-06-06 06:33:46 +00:00
|
|
|
{ callPackage, lib, stdenv, ... }@_args:
|
2020-11-04 17:59:02 +00:00
|
|
|
|
|
|
|
let
|
2021-06-06 06:33:46 +00:00
|
|
|
base = callPackage ./generic.nix (_args // {
|
2022-01-17 07:07:49 +00:00
|
|
|
version = "7.4.27";
|
|
|
|
sha256 = "184aaef313fbf28c9987f6aa07b655cd1b0eae9e7e17061775a3e7d880185563";
|
2020-11-04 17:59:02 +00:00
|
|
|
});
|
|
|
|
|
2021-06-26 07:46:46 +00:00
|
|
|
in
|
|
|
|
base.withExtensions ({ all, ... }: with all; ([
|
|
|
|
bcmath
|
|
|
|
calendar
|
|
|
|
curl
|
|
|
|
ctype
|
|
|
|
dom
|
|
|
|
exif
|
|
|
|
fileinfo
|
|
|
|
filter
|
|
|
|
ftp
|
|
|
|
gd
|
|
|
|
gettext
|
|
|
|
gmp
|
|
|
|
iconv
|
|
|
|
intl
|
|
|
|
json
|
|
|
|
ldap
|
|
|
|
mbstring
|
|
|
|
mysqli
|
|
|
|
mysqlnd
|
|
|
|
opcache
|
|
|
|
openssl
|
|
|
|
pcntl
|
|
|
|
pdo
|
|
|
|
pdo_mysql
|
|
|
|
pdo_odbc
|
|
|
|
pdo_pgsql
|
|
|
|
pdo_sqlite
|
|
|
|
pgsql
|
|
|
|
posix
|
|
|
|
readline
|
|
|
|
session
|
|
|
|
simplexml
|
|
|
|
sockets
|
|
|
|
soap
|
|
|
|
sodium
|
|
|
|
sqlite3
|
|
|
|
tokenizer
|
|
|
|
xmlreader
|
|
|
|
xmlwriter
|
|
|
|
zip
|
|
|
|
zlib
|
2020-11-04 17:59:02 +00:00
|
|
|
] ++ lib.optionals (!stdenv.isDarwin) [ imap ]))
|