Apply proxy auth fix patch

Signed-off-by: magic_rb <richard@brezak.sk>
This commit is contained in:
magic_rb 2023-10-16 18:28:31 +02:00
parent 8a45acefa6
commit c7b774931d
No known key found for this signature in database
GPG key ID: 08D5287CC5DDCA0E

View file

@ -1,5 +1,5 @@
pkgs:
pkgs.matrix-synapse.override {
(pkgs.matrix-synapse.override {
extras = [
"redis"
"cache-memory"
@ -7,4 +7,13 @@ pkgs.matrix-synapse.override {
"url-preview"
"user-search"
];
}
matrix-synapse-unwrapped =
pkgs.matrix-synapse-unwrapped.overridePythonAttrs (old: {
patches = (old.patches or []) ++ [
(pkgs.fetchurl {
url = "https://patch-diff.githubusercontent.com/raw/matrix-org/synapse/pull/16504.patch";
hash = "sha256-hjUOmsl06gVPewRdg/DyO9E5bSkIRNBAFJIrWqUsT6Y=";
})
];
});
})