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

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

52 lines
655 B
Nix
Raw Normal View History

{ callPackage, lib, stdenv, ... }@_args:
2020-11-26 12:21:43 +00:00
let
base = callPackage ./generic.nix (_args // {
2022-04-13 18:07:43 +00:00
version = "8.0.18";
sha256 = "sha256-gm7jSIGhw0lnjU98xV/5FB+hQRNE5LuPldD5IjvOtVo=";
2020-11-26 12:21:43 +00:00
});
in
base.withExtensions ({ all, ... }: with all; ([
bcmath
calendar
curl
ctype
dom
exif
fileinfo
filter
ftp
gd
gettext
gmp
iconv
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
sqlite3
tokenizer
xmlreader
xmlwriter
zip
zlib
2020-11-26 12:21:43 +00:00
] ++ lib.optionals (!stdenv.isDarwin) [ imap ]))