73 lines
2.3 KiB
Nix
73 lines
2.3 KiB
Nix
{ stdenv, fetchurl, libidn, openssl, makeWrapper, fetchhg
|
|
, lua5, luasocket, luasec, luaexpat, luafilesystem, luabitop
|
|
, withLibevent ? true, luaevent ? null
|
|
, withZlib ? true, luazlib ? null
|
|
, withDBI ? true, luadbi ? null
|
|
# use withExtraLibs to add additional dependencies of community modules
|
|
, withExtraLibs ? [ ]
|
|
, withCommunityModules ? [ ] }:
|
|
|
|
assert withLibevent -> luaevent != null;
|
|
assert withZlib -> luazlib != null;
|
|
assert withDBI -> luadbi != null;
|
|
|
|
with stdenv.lib;
|
|
|
|
let
|
|
libs = [ luasocket luasec luaexpat luafilesystem luabitop ]
|
|
++ optional withLibevent luaevent
|
|
++ optional withZlib luazlib
|
|
++ optional withDBI luadbi
|
|
++ withExtraLibs;
|
|
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";
|
|
luaPath = concatStringsSep ";" (map getLuaPath libs);
|
|
luaCPath = concatStringsSep ";" (map getLuaCPath libs);
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.9.12";
|
|
name = "prosody-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "http://prosody.im/downloads/source/${name}.tar.gz";
|
|
sha256 = "139yxqpinajl32ryrybvilh54ddb1q6s0ajjhlcs4a0rnwia6n8s";
|
|
};
|
|
|
|
communityModules = fetchhg {
|
|
url = "https://hg.prosody.im/prosody-modules";
|
|
rev = "9a3e51f348fe";
|
|
sha256 = "09g4vi52rv0r3jzcm0bsgp4ngqq6iapfbxfh0l7qj36qnajp4vm6";
|
|
};
|
|
|
|
buildInputs = [ lua5 makeWrapper libidn openssl ];
|
|
|
|
configureFlags = [
|
|
"--ostype=linux"
|
|
"--with-lua-include=${lua5}/include"
|
|
"--with-lua=${lua5}"
|
|
];
|
|
|
|
postInstall = ''
|
|
${concatMapStringsSep "\n" (module: ''
|
|
cp -r $communityModules/mod_${module} $out/lib/prosody/modules/
|
|
'') withCommunityModules}
|
|
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 = [ ];
|
|
};
|
|
}
|