mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-21 23:54:22 +01:00
Apply proxy auth fix patch
Signed-off-by: magic_rb <richard@brezak.sk>
This commit is contained in:
parent
8a45acefa6
commit
c7b774931d
|
@ -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=";
|
||||
})
|
||||
];
|
||||
});
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue