about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTimo Kaufmann <timokau@zoho.com>2020-03-31 14:24:30 +0000
committerGitHub <noreply@github.com>2020-03-31 14:24:30 +0000
commit3aa6dcf21e8e3a0eabe16e52522522a8b9f8bf0b (patch)
treebd27f02ce9c46755a4c9c87db5450244ebb4d746
parent24ead6996c41a1c3784250c270baa93e99c4f612 (diff)
parentce2a2afac79052b2d0286ff32996fe2097f0d8bf (diff)
downloadnixlib-3aa6dcf21e8e3a0eabe16e52522522a8b9f8bf0b.tar
nixlib-3aa6dcf21e8e3a0eabe16e52522522a8b9f8bf0b.tar.gz
nixlib-3aa6dcf21e8e3a0eabe16e52522522a8b9f8bf0b.tar.bz2
nixlib-3aa6dcf21e8e3a0eabe16e52522522a8b9f8bf0b.tar.lz
nixlib-3aa6dcf21e8e3a0eabe16e52522522a8b9f8bf0b.tar.xz
nixlib-3aa6dcf21e8e3a0eabe16e52522522a8b9f8bf0b.tar.zst
nixlib-3aa6dcf21e8e3a0eabe16e52522522a8b9f8bf0b.zip
Merge pull request #83826 from mmilata/prosody-0.11.5
prosody: 0.11.3 -> 0.11.5
-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 8becdcd6a45b..0d552e9e1121 100644
--- a/pkgs/servers/xmpp/prosody/default.nix
+++ b/pkgs/servers/xmpp/prosody/default.nix
@@ -14,12 +14,12 @@ with stdenv.lib;
 
 
 stdenv.mkDerivation rec {
-  version = "0.11.3"; # also update communityModules
+  version = "0.11.5"; # also update communityModules
   pname = "prosody";
 
   src = fetchurl {
     url = "https://prosody.im/downloads/source/${pname}-${version}.tar.gz";
-    sha256 = "11xz4milv2962qf75vrdwsvd8sy2332nf69202rmvz5989pvvnng";
+    sha256 = "12s0hn6hvjbi61cdw3165l6iw0878971dmlvfg663byjsmjvvy2m";
   };
 
   # A note to all those merging automated updates: Please also update this
@@ -27,8 +27,8 @@ stdenv.mkDerivation rec {
   # version.
   communityModules = fetchhg {
     url = "https://hg.prosody.im/prosody-modules";
-    rev = "b54e98d5c4a1";
-    sha256 = "0bzn92j48krb2zhp9gn5bbn5sg0qv15j5lpxfszwqdln3lpmrvzg";
+    rev = "acd231e2b46f";
+    sha256 = "1b33lsxrrrvarknqz9xs7j7f19bzxxymmfdhch7k70x3yyiwmfsy";
   };
 
   buildInputs = [
@@ -67,7 +67,7 @@ stdenv.mkDerivation rec {
   meta = {
     description = "Open-source XMPP application server written in Lua";
     license = licenses.mit;
-    homepage = https://prosody.im;
+    homepage = "https://prosody.im";
     platforms = platforms.linux;
     maintainers = with maintainers; [ fpletz globin ];
   };