nixpkgs/pkgs/servers/xmpp/prosody/default.nix

58 lines
1.9 KiB
Nix
Raw Normal View History

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