glom: provide bin dir of postgresql

By default `pg_config --bindir` is executed during configure phase to
get the bin directory containing all the postgres executables used by
glom.

This seems wrong given that the same postgresql_15 package will be
executed on build and on the final host platform which is not
necessarily the same. To avoid that, specify the bin dir manually via
the corresponding configure option.

+2 -1
+2 -1
pkgs/applications/misc/glom/default.nix
··· 93 93 python3.pkgs.pygobject3 94 94 gtksourceview 95 95 gtksourceviewmm 96 - postgresql_15 # for pg_config 96 + postgresql_15 # for postgresql utils 97 97 ]; 98 98 99 99 enableParallelBuilding = true; ··· 102 102 103 103 configureFlags = [ 104 104 "--with-boost-python=boost_python${lib.versions.major python3.version}${lib.versions.minor python3.version}" 105 + "--with-postgres-utils=${lib.getBin postgresql_15}/bin" 105 106 ]; 106 107 107 108 makeFlags = [