From 16bc853114c2ce42ea54fbebb67f4784ecf8b832 Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Mon, 19 Feb 2024 16:24:17 +0100 Subject: [PATCH] nix: Change default socket location for libpq back to /var/run/postgresql Commit 85fbb233 accidentally changed the default socket location in which libpq is looking for postgresql unix sockets. This is changed in nixpkgs via patch. By imp- orting the default patches, this is changed back to what it was before. Without those patches it was changed from /run/postgresql to /tmp. Not a bugfix, because it was not released, yet. --- nix/libpq.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/libpq.nix b/nix/libpq.nix index 247bd2ec6..63542611e 100644 --- a/nix/libpq.nix +++ b/nix/libpq.nix @@ -19,7 +19,7 @@ stdenv.mkDerivation { pname = "libpq"; - inherit (postgresql) src version; + inherit (postgresql) src version patches; configureFlags = [ "--without-gssapi"