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.
This commit is contained in:
Wolfgang Walther
2024-02-19 16:24:17 +01:00
parent 272c1cc1e2
commit 16bc853114
+1 -1
View File
@@ -19,7 +19,7 @@
stdenv.mkDerivation {
pname = "libpq";
inherit (postgresql) src version;
inherit (postgresql) src version patches;
configureFlags = [
"--without-gssapi"