nixpkgs/pkgs/development/interpreters/php/8.0.nix
ajs124 8e8b21a0e4 php80: 8.0.1 -> 8.0.2
https://www.php.net/ChangeLog-8.php#8.0.2

Fixes CVE-2021-21702 and a whole buch of regular bugs
2021-02-06 18:32:58 +01:00

18 lines
634 B
Nix

{ callPackage, lib, stdenv, nixosTests, ... }@_args:
let
generic = (import ./generic.nix) _args;
base = callPackage generic (_args // {
version = "8.0.2";
sha256 = "1rm3gc2h9l0zd1ccawpg1wxqm8v8rllq417f2w5pqcdf7sgah3q0";
});
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 ]))