summary refs log tree commit diff
path: root/pkgs/servers/web-apps
diff options
context:
space:
mode:
authorsohalt <sohalt@sohalt.net>2020-07-19 17:02:23 +0200
committerLassulus <github@lassul.us>2020-07-19 18:38:54 +0200
commitaac481037491173bec2d6228880ff3df44424c65 (patch)
tree2333356a2b3005a3e12c3f5a94680f5c76a9f69c /pkgs/servers/web-apps
parent5717d9d2f7ca0662291910c52f1d7b95b568fec2 (diff)
downloadnixpkgs-aac481037491173bec2d6228880ff3df44424c65.tar
nixpkgs-aac481037491173bec2d6228880ff3df44424c65.tar.gz
nixpkgs-aac481037491173bec2d6228880ff3df44424c65.tar.bz2
nixpkgs-aac481037491173bec2d6228880ff3df44424c65.tar.lz
nixpkgs-aac481037491173bec2d6228880ff3df44424c65.tar.xz
nixpkgs-aac481037491173bec2d6228880ff3df44424c65.tar.zst
nixpkgs-aac481037491173bec2d6228880ff3df44424c65.zip
moodle: fix typo
Diffstat (limited to 'pkgs/servers/web-apps')
-rw-r--r--pkgs/servers/web-apps/moodle/moodle-utils.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/web-apps/moodle/moodle-utils.nix b/pkgs/servers/web-apps/moodle/moodle-utils.nix
index 52fddecc66d..168482bffe6 100644
--- a/pkgs/servers/web-apps/moodle/moodle-utils.nix
+++ b/pkgs/servers/web-apps/moodle/moodle-utils.nix
@@ -5,7 +5,7 @@ let
     name,
     src,
     pluginType,
-    configuraPhase ? ":",
+    configurePhase ? ":",
     buildPhase ? ":",
     buildInputs ? [ ],
     ...
@@ -14,7 +14,7 @@ let
     name = name;
 
     inherit pluginType;
-    inherit configuraPhase buildPhase;
+    inherit configurePhase buildPhase;
 
     buildInputs = [ unzip ] ++ buildInputs;