3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/servers/xmpp/prosody/default.nix

74 lines
2.4 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, libidn, openssl, makeWrapper, fetchhg
, lua5, luasocket, luasec, luaexpat, luafilesystem, luabitop
, withLibevent ? true, luaevent ? null
, withDBI ? true, luadbi ? null
# use withExtraLibs to add additional dependencies of community modules
, withExtraLibs ? [ ]
2018-03-22 02:40:46 +00:00
, withOnlyInstalledCommunityModules ? [ ]
, withCommunityModules ? [ ] }:
2015-02-19 11:09:38 +00:00
assert withLibevent -> luaevent != null;
assert withDBI -> luadbi != null;
2015-02-19 11:09:38 +00:00
with stdenv.lib;
let
libs = [ luasocket luasec luaexpat luafilesystem luabitop ]
++ optional withLibevent luaevent
++ 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";
2015-02-19 11:09:38 +00:00
luaPath = concatStringsSep ";" (map getLuaPath libs);
luaCPath = concatStringsSep ";" (map getLuaCPath libs);
in
stdenv.mkDerivation rec {
version = "0.10.0";
name = "prosody-${version}";
2015-03-26 23:39:15 +00:00
src = fetchurl {
url = "http://prosody.im/downloads/source/${name}.tar.gz";
sha256 = "1644jy5dk46vahmh6nna36s79k8k668sbi3qamjb4q3c4m3y853l";
};
2014-10-15 02:57:00 +01:00
communityModules = fetchhg {
url = "https://hg.prosody.im/prosody-modules";
2017-12-22 00:20:01 +00:00
rev = "150a7bd59043";
sha256 = "0nfx3lngcy88nd81gb7v4kh3nz1bzsm67bxgpd2lprk54diqcrz1";
2014-10-15 02:57:00 +01:00
};
2018-03-22 02:40:46 +00:00
buildInputs = [ lua5 makeWrapper libidn openssl ]
++ optional withDBI luadbi;
configureFlags = [
"--ostype=linux"
"--with-lua-include=${lua5}/include"
"--with-lua=${lua5}"
];
postInstall = ''
${concatMapStringsSep "\n" (module: ''
cp -r $communityModules/mod_${module} $out/lib/prosody/modules/
2018-03-22 02:40:46 +00:00
'') (withCommunityModules ++ withOnlyInstalledCommunityModules)}
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};'
'';
2018-03-22 02:40:46 +00:00
passthru.communityModules = withCommunityModules;
meta = {
description = "Open-source XMPP application server written in Lua";
2015-02-19 11:09:38 +00:00
license = licenses.mit;
homepage = https://prosody.im;
2015-02-19 11:09:38 +00:00
platforms = platforms.linux;
2018-03-22 02:40:46 +00:00
maintainers = with maintainers; [ fpletz globin ];
};
}