{ stdenv, fetchurl, libidn, openssl, makeWrapper, fetchhg , lua5, luasocket, luasec, luaexpat, luafilesystem, luabitop, luaevent ? null, luazlib ? null , withLibevent ? true, withZlib ? true , communityModules ? [], extraLibs ? [], extraModules ? [] }: assert withLibevent -> luaevent != null; assert withZlib -> luazlib != null; with stdenv.lib; let libs = [ luasocket luasec luaexpat luafilesystem luabitop ] ++ optional withLibevent luaevent ++ optional withZlib luazlib ++ extraLibs; getPath = lib : type : "${lib}/lib/lua/${lua5.luaversion}/?.${type};${lib}/share/lua/${lua5.luaversion}/?.${type}"; getLuaPath = lib : getPath lib "lua"; getLuaCPath = lib : getPath lib "so"; copyModule = name : "cp -rv $communityModules/${name} $out/lib/prosody/modules/"; 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"; luaPath = concatStringsSep ";" (map getLuaPath libs); luaCPath = concatStringsSep ";" (map getLuaCPath libs); copyModules = concatStringsSep ";" (map copyModule communityModules); copyExtraModules = concatStringsSep ";" (map copyExtraModule extraModules); in stdenv.mkDerivation rec { version = "0.9.10"; name = "prosody-${version}"; src = fetchurl { url = "http://prosody.im/downloads/source/${name}.tar.gz"; sha256 = "0bv6s5c0iizz015hh1lxlwlw1iwvisywajm2rcrbdfyrskzfwdj8"; }; communityModules = fetchhg { url = "https://hg.prosody.im/prosody-modules/"; rev = "5ca2470a7755"; sha256 = "06f3ndj15zhjwx8vjdyn73h3minw9wb37l9r753h6db56db2c0zl"; }; buildInputs = [ lua5 luasocket luasec luaexpat luabitop libidn openssl makeWrapper ] ++ optional withLibevent luaevent ++ optional withZlib luazlib; configureFlags = [ "--ostype=linux" "--with-lua-include=${lua5}/include" "--with-lua=${lua5}" ]; postInstall = '' ${copyModules} ${copyExtraModules} wrapProgram $out/bin/prosody \ --set LUA_PATH '${luaPath};' \ --set LUA_CPATH '${luaCPath};' wrapProgram $out/bin/prosodyctl \ --add-flags '--config "/etc/prosody/prosody.cfg.lua"' \ --set LUA_PATH '${luaPath};' \ --set LUA_CPATH '${luaCPath};' ''; meta = { description = "Open-source XMPP application server written in Lua"; license = licenses.mit; homepage = http://www.prosody.im; platforms = platforms.linux; maintainers = [ maintainers.flosse ]; }; }