matrix-synapse: 0.95.5 -> 0.95.5.1

This version is needed for compatibility with 1.0.0 and the new v4 rooms.

Also, enable systemd support based on host OS.
This commit is contained in:
Peter Hoeg 2019-05-29 10:05:09 +08:00
parent eccb90a2d9
commit adddf5492b

View File

@ -1,5 +1,5 @@
{ lib, stdenv, python3
, enableSystemd ? true
, enableSystemd ? stdenv.isLinux
}:
with python3.pkgs;
@ -23,11 +23,11 @@ let
in buildPythonApplication rec {
pname = "matrix-synapse";
version = "0.99.5";
version = "0.99.5.1";
src = fetchPypi {
inherit pname version;
sha256 = "0f50nfddrd4zxyv27wn9k5fxhqqa9kgvk2ijby0pgf61b054dhfn";
sha256 = "17iyy6hq6m0mcb5r8zwzw90qqfn6w4b9l87snlfrry8gzwjjwncz";
};
patches = [