diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2017-02-12 23:33:22 +0100 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2017-02-12 23:33:22 +0100 |
commit | 15ae61a74fddba1a8205ed5e2f84e18787c9f7f9 (patch) | |
tree | 807232698ee889925216a8a6657118845030a345 | |
parent | 4707cdf9ff5f19052bfb9cc0fb4792a7d266cd05 (diff) | |
download | nixos-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.nix | 2 |
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); |
26 | in | 26 | in |
27 | 27 | ||