mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-29 11:36:16 +01:00
17 lines
343 B
Nix
17 lines
343 B
Nix
pkgs:
|
|
(pkgs.matrix-synapse.override {
|
|
extras = [
|
|
"redis"
|
|
"cache-memory"
|
|
"postgres"
|
|
"url-preview"
|
|
"user-search"
|
|
];
|
|
matrix-synapse-unwrapped =
|
|
pkgs.matrix-synapse-unwrapped.overridePythonAttrs (old: {
|
|
patches = (old.patches or []) ++ [
|
|
./0001-Fix-http-s-proxy-authentication.patch
|
|
];
|
|
});
|
|
})
|