moodle: 4.4.1 -> 4.4.3 (#334639)

This commit is contained in:
Thomas Gerbet
2024-11-30 13:08:19 +01:00
committed by GitHub
2 changed files with 3 additions and 3 deletions

View File

@@ -56,7 +56,7 @@ let
mysqlLocal = cfg.database.createLocally && cfg.database.type == "mysql";
pgsqlLocal = cfg.database.createLocally && cfg.database.type == "pgsql";
phpExt = pkgs.php81.buildEnv {
phpExt = pkgs.php83.buildEnv {
extensions = { all, ... }: with all; [ iconv mbstring curl openssl tokenizer soap ctype zip gd simplexml dom intl sqlite3 pgsql pdo_sqlite pdo_pgsql pdo_odbc pdo_mysql pdo mysqli session zlib xmlreader fileinfo filter opcache exif sodium ];
extraConfig = "max_input_vars = 5000";
};