feat: Build against libpq 15

Signed-off-by: Wolfgang Walther <walther@technowledgy.de>
Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
This commit is contained in:
Robert
2022-11-02 08:25:07 +01:00
committed by GitHub
co-authored by Wolfgang Walther
parent 44dd73adcc
commit c8e4f38984
5 changed files with 20 additions and 4 deletions
+5 -2
View File
@@ -1,5 +1,8 @@
self: super:
{ patches }: self: super:
# Overlay that sets the default version of PostgreSQL.
with patches;
{
postgresql = super.postgresql_14;
postgresql = super.postgresql_15.overrideAttrs ({ patches ? [ ], ... }: {
patches = patches ++ [ postgresql-atexit ];
});
}