We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90fb1af commit eaf8892Copy full SHA for eaf8892
nix/ext/pg_graphql.nix
@@ -27,7 +27,7 @@ buildPgrxExtension_0_12_9 rec {
27
# Setting RUSTFLAGS in env to ensure it's available for all phases
28
env = lib.optionalAttrs stdenv.isDarwin {
29
POSTGRES_LIB = "${postgresql}/lib";
30
- PGPORT = "5434";
+ PGPORT = if (lib.versions.major postgresql.version) == "17" then "5440" else "5439";
31
RUSTFLAGS = "-C link-arg=-undefined -C link-arg=dynamic_lookup";
32
NIX_BUILD_CORES = "4"; # Limit parallel jobs
33
CARGO_BUILD_JOBS = "4"; # Limit cargo parallelism
0 commit comments