summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2017-02-12 23:33:22 +0100
committerGregor Kleen <gkleen@yggdrasil.li>2017-02-12 23:33:22 +0100
commit15ae61a74fddba1a8205ed5e2f84e18787c9f7f9 (patch)
tree807232698ee889925216a8a6657118845030a345
parent4707cdf9ff5f19052bfb9cc0fb4792a7d266cd05 (diff)
downloadnixos-15ae61a74fddba1a8205ed5e2f84e18787c9f7f9.tar
nixos-15ae61a74fddba1a8205ed5e2f84e18787c9f7f9.tar.gz
nixos-15ae61a74fddba1a8205ed5e2f84e18787c9f7f9.tar.bz2
nixos-15ae61a74fddba1a8205ed5e2f84e18787c9f7f9.tar.xz
nixos-15ae61a74fddba1a8205ed5e2f84e18787c9f7f9.zip
No more mod_websocket?
-rw-r--r--customized/prosody.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/customized/prosody.nix b/customized/prosody.nix
index 816d6b5e..2a23b651 100644
--- a/customized/prosody.nix
+++ b/customized/prosody.nix
@@ -21,7 +21,7 @@ let
21 copyExtraModule = path: "n=0; for i in ${path}/*; do n=1; done; if [[ $n -gt 0 ]]; then cp -rv ${path}/* $out/lib/prosody/modules/; fi"; 21 copyExtraModule = path: "n=0; for i in ${path}/*; do n=1; done; if [[ $n -gt 0 ]]; then cp -rv ${path}/* $out/lib/prosody/modules/; fi";
22 luaPath = concatStringsSep ";" (map getLuaPath libs); 22 luaPath = concatStringsSep ";" (map getLuaPath libs);
23 luaCPath = concatStringsSep ";" (map getLuaCPath libs); 23 luaCPath = concatStringsSep ";" (map getLuaCPath libs);
24 copyModules = concatStringsSep ";" (map copyModule (communityModules ++ ["mod_websocket"])); 24 copyModules = concatStringsSep ";" (map copyModule communityModules);
25 copyExtraModules = concatStringsSep ";" (map copyExtraModule extraModules); 25 copyExtraModules = concatStringsSep ";" (map copyExtraModule extraModules);
26in 26in
27 27