nixpkgs/pkgs/servers/web-apps/moodle/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

63 lines
1.7 KiB
Nix
Raw Normal View History

2020-06-18 10:34:31 +00:00
{ lib, stdenv, fetchurl, writeText, plugins ? [ ] }:
2019-06-19 10:23:43 +00:00
let
2022-03-18 15:44:47 +00:00
version = "3.11.6";
2020-11-02 12:28:06 +00:00
stableVersion = lib.concatStrings (lib.take 2 (lib.splitVersion version));
2019-06-19 10:23:43 +00:00
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 {
url = "https://download.moodle.org/stable${stableVersion}/${pname}-${version}.tgz";
2022-03-18 15:44:47 +00:00
sha256 = "sha256-g3qHYkxiXb18vJ23THUw8ej+s5SgIkJpmjQmmARwQhs=";
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 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/";
2020-09-26 06:52:11 +00:00
maintainers = with maintainers; [ freezeboy ];
2019-06-19 10:23:43 +00:00
platforms = platforms.all;
};
}