matrix-synapse: pull in 1.127.1 early (security)

Fixes https://github.com/element-hq/synapse/security/advisories/GHSA-v56r-hwv5-mxg6
CVE-2025-30355
This commit is contained in:
teutat3s 2025-03-28 13:48:24 +01:00
parent cdf9819b93
commit ae2277aa21
Signed by: teutat3s
GPG key ID: 4FA1D3FA524F22C1
2 changed files with 19 additions and 0 deletions

View file

@ -19,6 +19,7 @@
nextcloud-skeleton = prev.callPackage ./pkgs/nextcloud-skeleton { };
}
)
(import ./matrix-synapse.nix)
];
}
);

View file

@ -0,0 +1,18 @@
final: prev: {
matrix-synapse-unwrapped = prev.matrix-synapse-unwrapped.overrideAttrs (oldAttrs: rec {
inherit (oldAttrs) pname;
version = "1.127.1";
src = prev.fetchFromGitHub {
owner = "element-hq";
repo = "synapse";
rev = "v${version}";
hash = "sha256-DNUKbb+d3BBp8guas6apQ4yFeXCc0Ilijtbt1hZkap4=";
};
cargoDeps = prev.rustPlatform.fetchCargoVendor {
inherit src;
name = "${pname}-${version}";
hash = "sha256-wI3vOfR5UpVFls2wPfgeIEj2+bmWdL3pDSsKfT+ysw8=";
};
});
}