mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-22 08:04:20 +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:
|
||||||
pkgs.matrix-synapse.override {
|
(pkgs.matrix-synapse.override {
|
||||||
extras = [
|
extras = [
|
||||||
"redis"
|
"redis"
|
||||||
"cache-memory"
|
"cache-memory"
|
||||||
|
@ -7,4 +7,13 @@ pkgs.matrix-synapse.override {
|
||||||
"url-preview"
|
"url-preview"
|
||||||
"user-search"
|
"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