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 9481589 commit fd88452Copy full SHA for fd88452
flake.nix
@@ -301,7 +301,9 @@
301
path = ./ansible/files/postgresql_config/pg_ident.conf.j2;
302
};
303
getkeyScript = ./nix/tests/util/pgsodium_getkey.sh;
304
- localeArchive = "${pkgs.glibcLocales}/lib/locale/locale-archive";
+ localeArchive = if pkgs.stdenv.isDarwin
305
+ then "${pkgs.darwin.locale}/share/locale"
306
+ else "${pkgs.glibcLocales}/lib/locale/locale-archive";
307
in
308
pkgs.runCommand "start-postgres-server" { } ''
309
mkdir -p $out/bin $out/etc/postgresql-custom $out/etc/postgresql
0 commit comments