Merge pull request #243634 from sefidel/dendrite-patch-243621
dendrite: fix db lockup
This commit is contained in:
commit
d1f636bd18
1 changed files with 9 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub
|
||||
{ lib, buildGoModule, fetchFromGitHub, fetchpatch
|
||||
, nixosTests, postgresql, postgresqlTestHook }:
|
||||
|
||||
buildGoModule rec {
|
||||
|
@ -12,6 +12,14 @@ buildGoModule rec {
|
|||
hash = "sha256-2DqEfTXD3W6MxfBb6aHaKH+zpxLc2tHaGuWGQuncySo=";
|
||||
};
|
||||
|
||||
patches = [
|
||||
# Fix SQLite db lockup
|
||||
(fetchpatch {
|
||||
url = "https://github.com/matrix-org/dendrite/commit/c08c7405dbe9d88c1364f6f1f2466db5045506cc.patch";
|
||||
hash = "sha256-gTF9jK5Ihfe1v49gPCK68BLeiUZa2Syo+7D9r62iEXQ=";
|
||||
})
|
||||
];
|
||||
|
||||
vendorHash = "sha256-dc0zpKh7J+fi2b5GD/0BQ120UXbBvJLUF74RmYMSOMw=";
|
||||
|
||||
subPackages = [
|
||||
|
|
Loading…
Reference in a new issue