We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3b91a81 + 676db52 commit 8091ea3Copy full SHA for 8091ea3
pkgs/servers/sql/postgresql/generic.nix
@@ -189,6 +189,12 @@ let
189
(if atLeast "13" then ./patches/socketdir-in-run-13+.patch else ./patches/socketdir-in-run.patch)
190
] ++ lib.optionals (stdenv'.hostPlatform.isDarwin && olderThan "16") [
191
./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
+ })
198
];
199
200
installTargets = [ "install-world" ];
0 commit comments