2020-04-20 19:27:53 +01:00
|
|
|
{ stdenv, fetchurl, lib, libidn, openssl, makeWrapper, fetchhg
|
2021-09-11 23:00:26 +01:00
|
|
|
, lua
|
2020-05-24 20:05:42 +01:00
|
|
|
, nixosTests
|
2021-09-11 23:00:26 +01:00
|
|
|
, withLibevent ? true
|
2021-09-12 00:20:30 +01:00
|
|
|
, withDBI ? true
|
2017-03-01 00:57:02 +00:00
|
|
|
# use withExtraLibs to add additional dependencies of community modules
|
|
|
|
, withExtraLibs ? [ ]
|
2018-03-22 02:40:46 +00:00
|
|
|
, withOnlyInstalledCommunityModules ? [ ]
|
2017-03-01 00:57:02 +00:00
|
|
|
, withCommunityModules ? [ ] }:
|
2015-02-19 11:09:38 +00:00
|
|
|
|
2021-01-15 07:07:56 +00:00
|
|
|
with lib;
|
2014-09-02 16:08:56 +01:00
|
|
|
|
|
|
|
|
2021-09-11 23:00:26 +01:00
|
|
|
let
|
2021-09-12 00:20:30 +01:00
|
|
|
luaEnv = lua.withPackages(p: with p; [
|
2021-09-11 23:00:26 +01:00
|
|
|
luasocket luasec luaexpat luafilesystem luabitop luadbi-sqlite3
|
|
|
|
]
|
|
|
|
++ lib.optional withLibevent p.luaevent
|
|
|
|
++ lib.optional withDBI p.luadbi
|
|
|
|
);
|
|
|
|
in
|
2014-09-02 16:08:56 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2021-08-06 12:16:33 +01:00
|
|
|
version = "0.11.10"; # also update communityModules
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "prosody";
|
2020-04-20 19:27:53 +01: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 16:08:56 +01:00
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://prosody.im/downloads/source/${pname}-${version}.tar.gz";
|
2021-08-06 12:16:33 +01:00
|
|
|
sha256 = "1q84s9cq7cgzd295qxa2iy0r3vd3v3chbck62bdx3pd6skk19my6";
|
2014-09-02 16:08:56 +01:00
|
|
|
};
|
|
|
|
|
2019-02-04 10:11:31 +00: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 02:57:00 +01:00
|
|
|
communityModules = fetchhg {
|
2017-03-01 00:57:02 +00:00
|
|
|
url = "https://hg.prosody.im/prosody-modules";
|
2021-08-06 12:16:33 +01:00
|
|
|
rev = "64fafbeba14d";
|
|
|
|
sha256 = "02gj1b8sdmdvymsdmjpq47zrl7sg578jcdxbbq18s44f3njmc9q1";
|
2014-10-15 02:57:00 +01:00
|
|
|
};
|
|
|
|
|
2021-09-11 23:00:26 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
2019-06-13 12:01:10 +01:00
|
|
|
buildInputs = [
|
2021-09-11 23:00:26 +01:00
|
|
|
luaEnv libidn openssl
|
2019-06-13 12:01:10 +01:00
|
|
|
]
|
|
|
|
++ withExtraLibs;
|
|
|
|
|
2014-09-02 16:08:56 +01:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--ostype=linux"
|
2021-09-11 23:00:26 +01:00
|
|
|
"--with-lua-include=${luaEnv}/include"
|
|
|
|
"--with-lua=${luaEnv}"
|
2014-09-02 16:08:56 +01:00
|
|
|
];
|
|
|
|
|
2020-11-01 00:56:10 +00:00
|
|
|
postBuild = ''
|
|
|
|
make -C tools/migration
|
|
|
|
'';
|
|
|
|
|
2021-09-11 23:00:26 +01:00
|
|
|
# the wrapping should go away once lua hook is fixed
|
2014-09-02 16:08:56 +01:00
|
|
|
postInstall = ''
|
2017-03-01 00:57:02 +00:00
|
|
|
${concatMapStringsSep "\n" (module: ''
|
|
|
|
cp -r $communityModules/mod_${module} $out/lib/prosody/modules/
|
2020-04-20 19:27:53 +01:00
|
|
|
'') (lib.lists.unique(nixosModuleDeps ++ withCommunityModules ++ withOnlyInstalledCommunityModules))}
|
2014-09-02 16:08:56 +01:00
|
|
|
wrapProgram $out/bin/prosody \
|
2019-08-21 14:09:50 +01:00
|
|
|
--prefix LUA_PATH ';' "$LUA_PATH" \
|
|
|
|
--prefix LUA_CPATH ';' "$LUA_CPATH"
|
2014-09-02 16:08:56 +01:00
|
|
|
wrapProgram $out/bin/prosodyctl \
|
|
|
|
--add-flags '--config "/etc/prosody/prosody.cfg.lua"' \
|
2019-08-21 14:09:50 +01:00
|
|
|
--prefix LUA_PATH ';' "$LUA_PATH" \
|
|
|
|
--prefix LUA_CPATH ';' "$LUA_CPATH"
|
2020-11-01 00:56:10 +00:00
|
|
|
|
|
|
|
make -C tools/migration install
|
|
|
|
wrapProgram $out/bin/prosody-migrator \
|
|
|
|
--prefix LUA_PATH ';' "$LUA_PATH" \
|
|
|
|
--prefix LUA_CPATH ';' "$LUA_CPATH"
|
2014-09-02 16:08:56 +01:00
|
|
|
'';
|
|
|
|
|
2020-05-24 20:05:42 +01:00
|
|
|
passthru = {
|
|
|
|
communityModules = withCommunityModules;
|
|
|
|
tests = {
|
|
|
|
main = nixosTests.prosody;
|
|
|
|
mysql = nixosTests.prosodyMysql;
|
|
|
|
};
|
|
|
|
};
|
2018-03-22 02:40:46 +00:00
|
|
|
|
2014-09-02 16:08:56 +01:00
|
|
|
meta = {
|
|
|
|
description = "Open-source XMPP application server written in Lua";
|
2015-02-19 11:09:38 +00:00
|
|
|
license = licenses.mit;
|
2020-03-31 03:21:18 +01:00
|
|
|
homepage = "https://prosody.im";
|
2015-02-19 11:09:38 +00:00
|
|
|
platforms = platforms.linux;
|
2020-09-11 07:28:24 +01:00
|
|
|
maintainers = with maintainers; [ fpletz globin ninjatrappeur ];
|
2014-09-02 16:08:56 +01:00
|
|
|
};
|
|
|
|
}
|