nixpkgs/pkgs/development/interpreters/php/8.0.nix
ajs124 d0c10fc34c php80: 8.0.7 -> 8.0.8
fixes CVE-2021-21705 and CVE-2021-21704
also various other bugs, see https://www.php.net/ChangeLog-8.php#8.0.8
for a complete changelog
2021-07-01 14:01:14 +02:00

52 lines
655 B
Nix

{ callPackage, lib, stdenv, ... }@_args:
let
base = callPackage ./generic.nix (_args // {
version = "8.0.8";
sha256 = "0vyi9hhy7yl4l589dniwb3gq29sp3giq7ni4nca3x54q3bbpgg8l";
});
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
] ++ lib.optionals (!stdenv.isDarwin) [ imap ]))