summary refs log tree commit diff
path: root/pkgs/servers/matrix-synapse/default.nix
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2023-09-12 18:01:30 +0000
committerGitHub <noreply@github.com>2023-09-12 18:01:30 +0000
commit564dc31f47ac641bdd42f3d0998fc411c05d56fa (patch)
tree5a0c7067ae569ccb16976732066a5f632f22c3b8 /pkgs/servers/matrix-synapse/default.nix
parent757197a9dfbe52b16b116b39ada02d4e4098b4af (diff)
parent41b9c0a6d9467cece015ffc7016b9e7e73542157 (diff)
downloadnixpkgs-564dc31f47ac641bdd42f3d0998fc411c05d56fa.tar
nixpkgs-564dc31f47ac641bdd42f3d0998fc411c05d56fa.tar.gz
nixpkgs-564dc31f47ac641bdd42f3d0998fc411c05d56fa.tar.bz2
nixpkgs-564dc31f47ac641bdd42f3d0998fc411c05d56fa.tar.lz
nixpkgs-564dc31f47ac641bdd42f3d0998fc411c05d56fa.tar.xz
nixpkgs-564dc31f47ac641bdd42f3d0998fc411c05d56fa.tar.zst
nixpkgs-564dc31f47ac641bdd42f3d0998fc411c05d56fa.zip
Merge staging-next into staging
Diffstat (limited to 'pkgs/servers/matrix-synapse/default.nix')
-rw-r--r--pkgs/servers/matrix-synapse/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/servers/matrix-synapse/default.nix b/pkgs/servers/matrix-synapse/default.nix
index 126f1cbf5fa..478be3129e4 100644
--- a/pkgs/servers/matrix-synapse/default.nix
+++ b/pkgs/servers/matrix-synapse/default.nix
@@ -16,20 +16,20 @@ let
 in
 python3.pkgs.buildPythonApplication rec {
   pname = "matrix-synapse";
-  version = "1.91.2";
+  version = "1.92.1";
   format = "pyproject";
 
   src = fetchFromGitHub {
     owner = "matrix-org";
     repo = "synapse";
     rev = "v${version}";
-    hash = "sha256-U9SyDmO34s9PjLPnT1QYemGeCmKdXRaQvEC8KKcFXOI=";
+    hash = "sha256-rCxoYtdvh+Gu0O2T3uu0k2FFFFc7m09LuKJvkSky3M4=";
   };
 
   cargoDeps = rustPlatform.fetchCargoTarball {
     inherit src;
     name = "${pname}-${version}";
-    hash = "sha256-q3uoT2O/oTVSg6olZohU8tiWahijyva+1tm4e1GWGj4=";
+    hash = "sha256-yZeCENWdPv80Na1++/IQFOrhah/VHWwJDNV2dI/yTHg=";
   };
 
   postPatch = ''