Skip to content

Commit 8091ea3

Browse files
authored
Merge: postgresql_17: fix build (#354571)
2 parents 3b91a81 + 676db52 commit 8091ea3

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pkgs/servers/sql/postgresql/generic.nix

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,12 @@ let
189189
(if atLeast "13" then ./patches/socketdir-in-run-13+.patch else ./patches/socketdir-in-run.patch)
190190
] ++ lib.optionals (stdenv'.hostPlatform.isDarwin && olderThan "16") [
191191
./patches/export-dynamic-darwin-15-.patch
192+
] ++ lib.optionals (atLeast "17") [
193+
# Fix flaky test, https://www.postgresql.org/message-id/[email protected]
194+
(fetchpatch {
195+
url = "https://github.com/postgres/postgres/commit/a358019159de68d4f045cbb5d89c8c8c2e96e483.patch";
196+
hash = "sha256-9joQZo93oUTp6CrcGnhj7o+Mrbj/KCWwwGUc9KAst+s=";
197+
})
192198
];
193199

194200
installTargets = [ "install-world" ];

0 commit comments

Comments
 (0)