summary refs log tree commit diff
path: root/pkgs/servers/xmpp
diff options
context:
space:
mode:
authorFélix Baylac-Jacqué <felix@alternativebit.fr>2020-09-11 08:28:24 +0200
committerFélix Baylac-Jacqué <felix@alternativebit.fr>2020-09-11 08:38:18 +0200
commitb47cabb6acc98fee8f47b780456844bc88c975d8 (patch)
tree1502a0625793bd8a810d1092b00795d5438300ac /pkgs/servers/xmpp
parent35521e4ea7a5bb471ce6b7286f5ce951b13a1027 (diff)
downloadnixpkgs-b47cabb6acc98fee8f47b780456844bc88c975d8.tar
nixpkgs-b47cabb6acc98fee8f47b780456844bc88c975d8.tar.gz
nixpkgs-b47cabb6acc98fee8f47b780456844bc88c975d8.tar.bz2
nixpkgs-b47cabb6acc98fee8f47b780456844bc88c975d8.tar.lz
nixpkgs-b47cabb6acc98fee8f47b780456844bc88c975d8.tar.xz
nixpkgs-b47cabb6acc98fee8f47b780456844bc88c975d8.tar.zst
nixpkgs-b47cabb6acc98fee8f47b780456844bc88c975d8.zip
prosody: 0.11.5 -> 0.11.6
See https://blog.prosody.im/prosody-0.11.6-released/ for the release
notes.
Diffstat (limited to 'pkgs/servers/xmpp')
-rw-r--r--pkgs/servers/xmpp/prosody/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/servers/xmpp/prosody/default.nix b/pkgs/servers/xmpp/prosody/default.nix
index 0a0cc9aeaf9..54c4a4c5216 100644
--- a/pkgs/servers/xmpp/prosody/default.nix
+++ b/pkgs/servers/xmpp/prosody/default.nix
@@ -15,7 +15,7 @@ with stdenv.lib;
 
 
 stdenv.mkDerivation rec {
-  version = "0.11.5"; # also update communityModules
+  version = "0.11.6"; # 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
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
   ];
   src = fetchurl {
     url = "https://prosody.im/downloads/source/${pname}-${version}.tar.gz";
-    sha256 = "12s0hn6hvjbi61cdw3165l6iw0878971dmlvfg663byjsmjvvy2m";
+    sha256 = "0m8p2kwiy4l87ifpygricpyixi1vpx6j1jb6ki1zi4az3iixp8fd";
   };
 
   # A note to all those merging automated updates: Please also update this
@@ -37,8 +37,8 @@ stdenv.mkDerivation rec {
   # version.
   communityModules = fetchhg {
     url = "https://hg.prosody.im/prosody-modules";
-    rev = "2dcbc01c9931";
-    sha256 = "0ydhbvfp7vk5zqpsc54ihxz6y2gmzh0bcgyz0xidlxrmxzwcvvyh";
+    rev = "e77122025080";
+    sha256 = "1pjax8lzgcwcn3mq5q4kbwfyyzaifqcc3a0s4rl9gib5rhwddybh";
   };
 
   buildInputs = [
@@ -85,6 +85,6 @@ stdenv.mkDerivation rec {
     license = licenses.mit;
     homepage = "https://prosody.im";
     platforms = platforms.linux;
-    maintainers = with maintainers; [ fpletz globin ];
+    maintainers = with maintainers; [ fpletz globin ninjatrappeur ];
   };
 }