From dcb6c5bb138a9a75aafc0d3713fa17476fd01e9d Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Wed, 17 Jan 2024 21:26:07 +0100 Subject: [PATCH] nix: Bump libpq version to link against v16 --- nix/libpq.nix | 1 + nix/overlays/postgresql-libpq.nix | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/nix/libpq.nix b/nix/libpq.nix index 6630ce5f8..ba82d65da 100644 --- a/nix/libpq.nix +++ b/nix/libpq.nix @@ -23,6 +23,7 @@ stdenv.mkDerivation { configureFlags = [ "--without-gssapi" + "--without-icu" "--without-readline" "--with-openssl" "--with-system-tzdata=${tzdata}/share/zoneinfo" diff --git a/nix/overlays/postgresql-libpq.nix b/nix/overlays/postgresql-libpq.nix index c08a07ecb..5f342bd86 100644 --- a/nix/overlays/postgresql-libpq.nix +++ b/nix/overlays/postgresql-libpq.nix @@ -1,6 +1,6 @@ self: super: { libpq = super.callPackage ../libpq.nix { - postgresql = super.postgresql_15; + postgresql = super.postgresql_16; }; }