0761e651c4
https://www.php.net/ChangeLog-7.php#7.4.15 Fixes CVE-2021-21702 and a some regular bugs
18 lines
640 B
Nix
18 lines
640 B
Nix
{ callPackage, lib, stdenv, nixosTests, ... }@_args:
|
|
|
|
let
|
|
generic = (import ./generic.nix) _args;
|
|
|
|
base = callPackage generic (_args // {
|
|
version = "7.4.15";
|
|
sha256 = "0mvp7b16sy9j36v9v1mhixwz16hi8mhax7rwpqy3sv24jc1bxmqv";
|
|
});
|
|
|
|
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
|
|
] ++ lib.optionals (!stdenv.isDarwin) [ imap ]))
|