nix: Bump libpq version to link against v16

This commit is contained in:
Wolfgang Walther
2024-01-26 17:17:05 +01:00
committed by Wolfgang Walther
parent 85fbb233a7
commit dcb6c5bb13
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -23,6 +23,7 @@ stdenv.mkDerivation {
configureFlags = [
"--without-gssapi"
"--without-icu"
"--without-readline"
"--with-openssl"
"--with-system-tzdata=${tzdata}/share/zoneinfo"
+1 -1
View File
@@ -1,6 +1,6 @@
self: super:
{
libpq = super.callPackage ../libpq.nix {
postgresql = super.postgresql_15;
postgresql = super.postgresql_16;
};
}