2020-04-20 20:27:53 +02:00
|
|
|
{ stdenv, fetchurl, lib, libidn, openssl, makeWrapper, fetchhg
|
2017-03-01 01:57:02 +01:00
|
|
|
, lua5, luasocket, luasec, luaexpat, luafilesystem, luabitop
|
2020-05-24 21:05:42 +02:00
|
|
|
, nixosTests
|
2017-03-01 01:57:02 +01:00
|
|
|
, 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 {
|
2020-03-31 04:21:18 +02:00
|
|
|
version = "0.11.5"; # also update communityModules
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "prosody";
|
2020-04-20 20:27:53 +02:00
|
|
|
# The following community modules are necessary for the nixos module
|
|
|
|
# prosody module to comply with XEP-0423 and provide a working
|
|
|
|
# default setup.
|
|
|
|
nixosModuleDeps = [
|
|
|
|
"bookmarks"
|
|
|
|
"cloud_notify"
|
|
|
|
"vcard_muc"
|
|
|
|
"smacks"
|
|
|
|
"http_upload"
|
|
|
|
];
|
2014-09-02 17:08:56 +02:00
|
|
|
src = fetchurl {
|
2019-08-15 14:41:18 +02:00
|
|
|
url = "https://prosody.im/downloads/source/${pname}-${version}.tar.gz";
|
2020-03-31 04:21:18 +02:00
|
|
|
sha256 = "12s0hn6hvjbi61cdw3165l6iw0878971dmlvfg663byjsmjvvy2m";
|
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";
|
2020-08-08 03:10:04 +02:00
|
|
|
rev = "2dcbc01c9931";
|
|
|
|
sha256 = "0ydhbvfp7vk5zqpsc54ihxz6y2gmzh0bcgyz0xidlxrmxzwcvvyh";
|
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/
|
2020-04-20 20:27:53 +02:00
|
|
|
'') (lib.lists.unique(nixosModuleDeps ++ withCommunityModules ++ withOnlyInstalledCommunityModules))}
|
2014-09-02 17:08:56 +02:00
|
|
|
wrapProgram $out/bin/prosody \
|
2019-08-21 15:09:50 +02:00
|
|
|
--prefix LUA_PATH ';' "$LUA_PATH" \
|
|
|
|
--prefix LUA_CPATH ';' "$LUA_CPATH"
|
2014-09-02 17:08:56 +02:00
|
|
|
wrapProgram $out/bin/prosodyctl \
|
|
|
|
--add-flags '--config "/etc/prosody/prosody.cfg.lua"' \
|
2019-08-21 15:09:50 +02:00
|
|
|
--prefix LUA_PATH ';' "$LUA_PATH" \
|
|
|
|
--prefix LUA_CPATH ';' "$LUA_CPATH"
|
2014-09-02 17:08:56 +02:00
|
|
|
'';
|
|
|
|
|
2020-05-24 21:05:42 +02:00
|
|
|
passthru = {
|
|
|
|
communityModules = withCommunityModules;
|
|
|
|
tests = {
|
|
|
|
main = nixosTests.prosody;
|
|
|
|
mysql = nixosTests.prosodyMysql;
|
|
|
|
};
|
|
|
|
};
|
2018-03-22 03:40:46 +01:00
|
|
|
|
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;
|
2020-03-31 04:21:18 +02: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
|
|
|
};
|
|
|
|
}
|