Unverified Commit 981199be authored by Maximilian Bosch's avatar Maximilian Bosch Committed by GitHub
Browse files

Merge: matrix-synapse: 1.124.0 -> 1.125 (#385068)

parents 659f9ea3 55484022
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@
  rustPlatform,
  rustc,
  nixosTests,
  callPackage,
  nix-update-script,
}:

let
@@ -17,20 +17,20 @@ let
in
python3.pkgs.buildPythonApplication rec {
  pname = "matrix-synapse";
  version = "1.124.0";
  version = "1.125.0";
  format = "pyproject";

  src = fetchFromGitHub {
    owner = "element-hq";
    repo = "synapse";
    rev = "v${version}";
    hash = "sha256-hL1MdngaAVqgdN8GS9m3jn4twsbX0GPFa5cq+SCJ1oI=";
    hash = "sha256-eo4JxNhVdAUeUmh0yUDE7+6csNbgdrYvf7UU/AMce7U=";
  };

  cargoDeps = rustPlatform.fetchCargoVendor {
    inherit src;
    name = "${pname}-${version}";
    hash = "sha256-OIrjBhjSavJubpcMtHLrfuK7uhfNd+AHKUmHno32yo4=";
    hash = "sha256-eAlybi5yDlnhdvVet5Xab4s1emyJrlQuEf3YzusU2M4=";
  };

  postPatch = ''
@@ -178,6 +178,7 @@ python3.pkgs.buildPythonApplication rec {
    tests = { inherit (nixosTests) matrix-synapse matrix-synapse-workers; };
    inherit plugins;
    python = python3;
    updateScript = nix-update-script { };
  };

  meta = with lib; {
+1 −1
Original line number Diff line number Diff line
@@ -44,7 +44,7 @@ stdenv.mkDerivation {
    unwrapped = matrix-synapse-unwrapped;

    # for backward compatibility
    inherit (matrix-synapse-unwrapped) plugins tests tools;
    inherit (matrix-synapse-unwrapped) plugins tests;
  };

  # Carry the maintainer, licenses, and various useful information.