prosody: 0.12.5 -> 13.0.2, nixos/prosody: fix startup

Co-authored-by: mirror230469 <215964377+mirror230469@users.noreply.github.com>
This commit is contained in:
Sandro Jäckel
2025-08-03 21:35:28 +02:00
co-authored by mirror230469
parent b919d1cd8f
commit e46dcd7074
2 changed files with 8 additions and 6 deletions
@@ -993,11 +993,12 @@ in
{
User = cfg.user;
Group = cfg.group;
Type = "forking";
Type = "simple";
RuntimeDirectory = [ "prosody" ];
PIDFile = "/run/prosody/prosody.pid";
ExecStart = "${cfg.package}/bin/prosodyctl start";
ExecStart = "${lib.getExe cfg.package} -F";
ExecReload = "${pkgs.coreutils}/bin/kill -HUP $MAINPID";
Restart = "on-abnormal";
MemoryDenyWriteExecute = true;
PrivateDevices = true;
+5 -4
View File
@@ -36,7 +36,7 @@ let
);
in
stdenv.mkDerivation (finalAttrs: {
version = "0.12.5"; # also update communityModules
version = "13.0.2"; # also update communityModules
pname = "prosody";
# The following community modules are necessary for the nixos module
# prosody module to comply with XEP-0423 and provide a working
@@ -48,7 +48,7 @@ stdenv.mkDerivation (finalAttrs: {
];
src = fetchurl {
url = "https://prosody.im/downloads/source/prosody-${finalAttrs.version}.tar.gz";
sha256 = "sha256-d4+3cHoPEDmVlbp6ucZt0qIojArjp/5Kt4+X1GK9OZ8=";
hash = "sha256-PmG9OW83ylJF3r/WvkmkemGRMy8Pqi1O5fAPuwQK3bA=";
};
# A note to all those merging automated updates: Please also update this
@@ -56,8 +56,8 @@ stdenv.mkDerivation (finalAttrs: {
# version.
communityModules = fetchhg {
url = "https://hg.prosody.im/prosody-modules";
rev = "fc521fb5ffa0";
hash = "sha256-Ci52Xkx1xd3GW9lBPKgWFBB52SocxKyj8f/Hq3hZeak=";
rev = "a4d7fefa4a8b";
hash = "sha256-lPxKZlIVyAt1Nx+PQ0ru0qihJ1ecBbvO0fMk+5D+NzE=";
};
nativeBuildInputs = [ makeWrapper ];
@@ -114,6 +114,7 @@ stdenv.mkDerivation (finalAttrs: {
license = licenses.mit;
homepage = "https://prosody.im";
platforms = platforms.linux;
mainProgram = "prosody";
maintainers = with maintainers; [
toastal
mirror230469