moodle: 4.4.1 -> 4.4.3 (#334639)
This commit is contained in:
commit
33f830be76
@ -56,7 +56,7 @@ let
|
|||||||
mysqlLocal = cfg.database.createLocally && cfg.database.type == "mysql";
|
mysqlLocal = cfg.database.createLocally && cfg.database.type == "mysql";
|
||||||
pgsqlLocal = cfg.database.createLocally && cfg.database.type == "pgsql";
|
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 ];
|
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";
|
extraConfig = "max_input_vars = 5000";
|
||||||
};
|
};
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{ lib, stdenv, fetchurl, writeText, plugins ? [ ], nixosTests }:
|
{ lib, stdenv, fetchurl, writeText, plugins ? [ ], nixosTests }:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "4.4.1";
|
version = "4.4.3";
|
||||||
|
|
||||||
versionParts = lib.take 2 (lib.splitVersion version);
|
versionParts = lib.take 2 (lib.splitVersion version);
|
||||||
# 4.2 -> 402, 3.11 -> 311
|
# 4.2 -> 402, 3.11 -> 311
|
||||||
@ -15,7 +15,7 @@ in stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://download.moodle.org/download.php/direct/stable${stableVersion}/${pname}-${version}.tgz";
|
url = "https://download.moodle.org/download.php/direct/stable${stableVersion}/${pname}-${version}.tgz";
|
||||||
hash = "sha256-+pzDrSMm+V4pEze13mJ/eyhaxcvnmG/eno0csCRTisU=";
|
hash = "sha256-SFysVBGGJKQFzm3pV25+wHaF7R1trqAOFQ1BLBTIzWk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
phpConfig = writeText "config.php" ''
|
phpConfig = writeText "config.php" ''
|
||||||
|
Loading…
Reference in New Issue
Block a user