aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/servers/web-apps/moodle/moodle-utils.nix
blob: 168482bffe65587366d628e089541bed6cdb89b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ stdenv, unzip, ... }:

let
  buildMoodlePlugin = a@{
    name,
    src,
    pluginType,
    configurePhase ? ":",
    buildPhase ? ":",
    buildInputs ? [ ],
    ...
  }:
  stdenv.mkDerivation (a // {
    name = name;

    inherit pluginType;
    inherit configurePhase buildPhase;

    buildInputs = [ unzip ] ++ buildInputs;

    installPhase = ''
      runHook preInstall

      mkdir -p "$out"
      mv * $out/

      runHook postInstall
    '';
  });
in {
  inherit buildMoodlePlugin;
}