2015-03-19 11:31:36 +00:00
|
|
|
{ stdenv, fetchurl, libidn, openssl, makeWrapper, fetchhg
|
|
|
|
, lua5, luasocket, luasec, luaexpat, luafilesystem, luabitop, luaevent ? null, luazlib ? null
|
|
|
|
, withLibevent ? true, withZlib ? true }:
|
2015-02-19 11:09:38 +00:00
|
|
|
|
|
|
|
assert withLibevent -> luaevent != null;
|
2015-03-19 11:31:36 +00:00
|
|
|
assert withZlib -> luazlib != null;
|
2015-02-19 11:09:38 +00:00
|
|
|
|
|
|
|
with stdenv.lib;
|
2014-09-02 15:08:56 +00:00
|
|
|
|
|
|
|
let
|
2015-03-19 11:31:36 +00:00
|
|
|
libs = [ luasocket luasec luaexpat luafilesystem luabitop ]
|
|
|
|
++ optional withLibevent luaevent
|
|
|
|
++ optional withZlib luazlib;
|
2014-09-02 15:08:56 +00:00
|
|
|
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";
|
2015-02-19 11:09:38 +00:00
|
|
|
luaPath = concatStringsSep ";" (map getLuaPath libs);
|
|
|
|
luaCPath = concatStringsSep ";" (map getLuaCPath libs);
|
2014-09-02 15:08:56 +00:00
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-02-10 18:25:48 +00:00
|
|
|
version = "0.9.10";
|
2014-09-02 15:08:56 +00:00
|
|
|
name = "prosody-${version}";
|
2015-03-26 23:39:15 +00:00
|
|
|
|
2014-09-02 15:08:56 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://prosody.im/downloads/source/${name}.tar.gz";
|
2016-02-10 18:25:48 +00:00
|
|
|
sha256 = "0bv6s5c0iizz015hh1lxlwlw1iwvisywajm2rcrbdfyrskzfwdj8";
|
2014-09-02 15:08:56 +00:00
|
|
|
};
|
|
|
|
|
2014-10-15 01:57:00 +00:00
|
|
|
communityModules = fetchhg {
|
|
|
|
url = "http://prosody-modules.googlecode.com/hg/";
|
|
|
|
rev = "4b55110b0aa8";
|
|
|
|
sha256 = "0010x2rl9f9ihy2nwqan2jdlz25433srj2zna1xh10490mc28hij";
|
|
|
|
};
|
|
|
|
|
2015-02-19 11:09:38 +00:00
|
|
|
buildInputs = [ lua5 luasocket luasec luaexpat luabitop libidn openssl makeWrapper ]
|
2015-03-19 11:31:36 +00:00
|
|
|
++ optional withLibevent luaevent
|
|
|
|
++ optional withZlib luazlib;
|
2014-09-02 15:08:56 +00:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--ostype=linux"
|
|
|
|
"--with-lua-include=${lua5}/include"
|
|
|
|
"--with-lua=${lua5}"
|
|
|
|
];
|
|
|
|
|
|
|
|
postInstall = ''
|
2014-10-15 01:57:00 +00:00
|
|
|
cp $communityModules/mod_websocket/mod_websocket.lua $out/lib/prosody/modules/
|
2014-09-02 15:08:56 +00:00
|
|
|
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";
|
2015-02-19 11:09:38 +00:00
|
|
|
license = licenses.mit;
|
2014-09-02 15:08:56 +00:00
|
|
|
homepage = http://www.prosody.im;
|
2015-02-19 11:09:38 +00:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.flosse ];
|
2014-09-02 15:08:56 +00:00
|
|
|
};
|
|
|
|
}
|