pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / servers / xmpp / prosody / default.nix
blobd325ed61a40f31549c1dedef3ed87a4b12857a9a
1 { stdenv, fetchurl, lib, libidn, openssl, makeWrapper, fetchhg, buildPackages
2 , icu
3 , lua
4 , nixosTests
5 , withDBI ? true
6 # use withExtraLibs to add additional dependencies of community modules
7 , withExtraLibs ? [ ]
8 , withExtraLuaPackages ? _: [ ]
9 , withOnlyInstalledCommunityModules ? [ ]
10 , withCommunityModules ? [ ] }:
12 let
13   luaEnv = lua.withPackages(p: with p; [
14       luasocket luasec luaexpat luafilesystem luabitop luadbi-sqlite3 luaunbound
15     ]
16     ++ lib.optional withDBI p.luadbi
17     ++ withExtraLuaPackages p
18   );
20 stdenv.mkDerivation rec {
21   version = "0.12.4"; # also update communityModules
22   pname = "prosody";
23   # The following community modules are necessary for the nixos module
24   # prosody module to comply with XEP-0423 and provide a working
25   # default setup.
26   nixosModuleDeps = [
27     "cloud_notify"
28     "vcard_muc"
29     "http_upload"
30   ];
31   src = fetchurl {
32     url = "https://prosody.im/downloads/source/${pname}-${version}.tar.gz";
33     sha256 = "R9cSJzwvKVWMQS9s2uwHMmC7wmt92iQ9tYAzAYPWWFY=";
34   };
36   # A note to all those merging automated updates: Please also update this
37   # attribute as some modules might not be compatible with a newer prosody
38   # version.
39   communityModules = fetchhg {
40     url = "https://hg.prosody.im/prosody-modules";
41     rev = "d3a72777f149";
42     hash = "sha256-qLuhEdvtOMfu78oxLUZKWZDb/AME1+IRnk0jkQNxTU8=";
43   };
45   nativeBuildInputs = [ makeWrapper ];
46   buildInputs = [
47     luaEnv libidn openssl icu
48   ]
49   ++ withExtraLibs;
51   configureFlags = [
52     "--ostype=linux"
53     "--with-lua-bin=${lib.getBin buildPackages.lua}/bin"
54     "--with-lua-include=${luaEnv}/include"
55     "--with-lua=${luaEnv}"
56     "--c-compiler=${stdenv.cc.targetPrefix}cc"
57     "--linker=${stdenv.cc.targetPrefix}cc"
58   ];
59   configurePlatforms = [];
61   postBuild = ''
62     make -C tools/migration
63   '';
65   buildFlags = [
66     # don't search for configs in the nix store when running prosodyctl
67     "INSTALLEDCONFIG=/etc/prosody"
68     "INSTALLEDDATA=/var/lib/prosody"
69   ];
71   # the wrapping should go away once lua hook is fixed
72   postInstall = ''
73       ${lib.concatMapStringsSep "\n" (module: ''
74         cp -r $communityModules/mod_${module} $out/lib/prosody/modules/
75       '') (lib.lists.unique(nixosModuleDeps ++ withCommunityModules ++ withOnlyInstalledCommunityModules))}
76       make -C tools/migration install
77     '';
79   passthru = {
80     communityModules = withCommunityModules;
81     tests = { inherit (nixosTests) prosody prosody-mysql; };
82   };
84   meta = with lib; {
85     description = "Open-source XMPP application server written in Lua";
86     license = licenses.mit;
87     homepage = "https://prosody.im";
88     platforms = platforms.linux;
89     maintainers = with maintainers; [ toastal ];
90   };