2015-03-19 12:31:36 +01:00
|
|
|
{ stdenv, fetchurl, libidn, openssl, makeWrapper, fetchhg
|
2017-03-01 01:57:02 +01:00
|
|
|
, 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 03:40:46 +01:00
|
|
|
, withOnlyInstalledCommunityModules ? [ ]
|
2017-03-01 01:57:02 +01:00
|
|
|
, withCommunityModules ? [ ] }:
|
2015-02-19 12:09:38 +01:00
|
|
|
|
|
|
|
assert withLibevent -> luaevent != null;
|
2017-03-01 01:57:02 +01:00
|
|
|
assert withDBI -> luadbi != null;
|
2015-02-19 12:09:38 +01:00
|
|
|
|
|
|
|
with stdenv.lib;
|
2014-09-02 17:08:56 +02:00
|
|
|
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-02-04 11:11:31 +01:00
|
|
|
version = "0.11.2"; # also update communityModules
|
2014-09-02 17:08:56 +02:00
|
|
|
name = "prosody-${version}";
|
2015-03-27 00:39:15 +01:00
|
|
|
|
2014-09-02 17:08:56 +02:00
|
|
|
src = fetchurl {
|
2018-06-28 20:43:35 +02:00
|
|
|
url = "https://prosody.im/downloads/source/${name}.tar.gz";
|
2019-01-17 02:52:32 +01:00
|
|
|
sha256 = "0ca8ivqb4hxqka08pwnaqi1bqxrdl8zw47g6z7nw9q5r57fgc4c9";
|
2014-09-02 17:08:56 +02:00
|
|
|
};
|
|
|
|
|
2019-02-04 11:11:31 +01:00
|
|
|
# A note to all those merging automated updates: Please also update this
|
|
|
|
# attribute as some modules might not be compatible with a newer prosody
|
|
|
|
# version.
|
2014-10-15 03:57:00 +02:00
|
|
|
communityModules = fetchhg {
|
2017-03-01 01:57:02 +01:00
|
|
|
url = "https://hg.prosody.im/prosody-modules";
|
2019-02-04 11:11:31 +01:00
|
|
|
rev = "b54e98d5c4a1";
|
|
|
|
sha256 = "0bzn92j48krb2zhp9gn5bbn5sg0qv15j5lpxfszwqdln3lpmrvzg";
|
2014-10-15 03:57:00 +02:00
|
|
|
};
|
|
|
|
|
2019-06-13 13:01:10 +02:00
|
|
|
buildInputs = [
|
|
|
|
lua5 makeWrapper libidn openssl
|
|
|
|
]
|
|
|
|
# Lua libraries
|
|
|
|
++ [
|
|
|
|
luasocket luasec luaexpat luafilesystem luabitop
|
|
|
|
]
|
|
|
|
++ optional withLibevent luaevent
|
|
|
|
++ optional withDBI luadbi
|
|
|
|
++ withExtraLibs;
|
|
|
|
|
2014-09-02 17:08:56 +02:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--ostype=linux"
|
|
|
|
"--with-lua-include=${lua5}/include"
|
|
|
|
"--with-lua=${lua5}"
|
|
|
|
];
|
|
|
|
|
|
|
|
postInstall = ''
|
2017-03-01 01:57:02 +01:00
|
|
|
${concatMapStringsSep "\n" (module: ''
|
|
|
|
cp -r $communityModules/mod_${module} $out/lib/prosody/modules/
|
2018-03-22 03:40:46 +01:00
|
|
|
'') (withCommunityModules ++ withOnlyInstalledCommunityModules)}
|
2014-09-02 17:08:56 +02:00
|
|
|
wrapProgram $out/bin/prosody \
|
2019-06-13 13:01:10 +02:00
|
|
|
--prefix LUA_PATH ';' "$NIX_LUA_PATH" \
|
|
|
|
--prefix LUA_CPATH ';' "$NIX_LUA_CPATH"
|
2014-09-02 17:08:56 +02:00
|
|
|
wrapProgram $out/bin/prosodyctl \
|
|
|
|
--add-flags '--config "/etc/prosody/prosody.cfg.lua"' \
|
2019-06-13 13:01:10 +02:00
|
|
|
--prefix LUA_PATH ';' "$NIX_LUA_PATH" \
|
|
|
|
--prefix LUA_CPATH ';' "$NIX_LUA_CPATH"
|
2014-09-02 17:08:56 +02:00
|
|
|
'';
|
|
|
|
|
2018-03-22 03:40:46 +01:00
|
|
|
passthru.communityModules = withCommunityModules;
|
|
|
|
|
2014-09-02 17:08:56 +02:00
|
|
|
meta = {
|
|
|
|
description = "Open-source XMPP application server written in Lua";
|
2015-02-19 12:09:38 +01:00
|
|
|
license = licenses.mit;
|
2017-12-22 01:17:48 +01:00
|
|
|
homepage = https://prosody.im;
|
2015-02-19 12:09:38 +01:00
|
|
|
platforms = platforms.linux;
|
2018-03-22 03:40:46 +01:00
|
|
|
maintainers = with maintainers; [ fpletz globin ];
|
2014-09-02 17:08:56 +02:00
|
|
|
};
|
|
|
|
}
|