2020-06-18 10:34:31 +00:00
|
|
|
{ lib, stdenv, fetchurl, writeText, plugins ? [ ] }:
|
2019-06-19 10:23:43 +00:00
|
|
|
|
|
|
|
let
|
2020-09-25 19:38:21 +00:00
|
|
|
version = "3.9.2";
|
2019-06-19 10:23:43 +00:00
|
|
|
stableVersion = builtins.substring 0 2 (builtins.replaceStrings ["."] [""] version);
|
|
|
|
|
2020-06-18 10:34:31 +00:00
|
|
|
in stdenv.mkDerivation rec {
|
2019-06-19 10:23:43 +00:00
|
|
|
pname = "moodle";
|
|
|
|
inherit version;
|
|
|
|
|
|
|
|
src = fetchurl {
|
2020-06-18 10:34:31 +00:00
|
|
|
url =
|
|
|
|
"https://download.moodle.org/stable${stableVersion}/${pname}-${version}.tgz";
|
2020-09-25 19:38:21 +00:00
|
|
|
sha256 = "ygy9xlYs49Ga3u2Q/vqxhnDnqXsrh6YYTAtcsXF8kNo=";
|
2019-06-19 10:23:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
phpConfig = writeText "config.php" ''
|
2020-06-18 10:34:31 +00:00
|
|
|
<?php
|
|
|
|
return require(getenv('MOODLE_CONFIG'));
|
|
|
|
?>
|
2019-06-19 10:23:43 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
|
|
|
|
mkdir -p $out/share/moodle
|
|
|
|
cp -r . $out/share/moodle
|
|
|
|
cp ${phpConfig} $out/share/moodle/config.php
|
|
|
|
|
2020-06-18 10:34:31 +00:00
|
|
|
${lib.concatStringsSep "\n" (map (p:
|
|
|
|
let
|
|
|
|
dir = if p.pluginType == "mod" then
|
|
|
|
"mod"
|
|
|
|
else if p.pluginType == "theme" then
|
|
|
|
"theme"
|
|
|
|
else if p.pluginType == "block" then
|
|
|
|
"blocks"
|
|
|
|
else if p.pluginType == "question" then
|
|
|
|
"question/type"
|
|
|
|
else if p.pluginType == "course" then
|
|
|
|
"course/format"
|
|
|
|
else if p.pluginType == "report" then
|
|
|
|
"admin/report"
|
|
|
|
else
|
|
|
|
throw "unknown moodle plugin type";
|
|
|
|
# we have to copy it, because the plugins have refrences to .. inside
|
|
|
|
in ''
|
|
|
|
mkdir -p $out/share/moodle/${dir}/${p.name}
|
|
|
|
cp -r ${p}/* $out/share/moodle/${dir}/${p.name}/
|
|
|
|
'') plugins)}
|
|
|
|
|
2019-06-19 10:23:43 +00:00
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-06-18 10:34:31 +00:00
|
|
|
description =
|
|
|
|
"Free and open-source learning management system (LMS) written in PHP";
|
2019-06-19 10:23:43 +00:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
homepage = "https://moodle.org/";
|
|
|
|
maintainers = with maintainers; [ aanderse ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|