beam: fix locale errors on darwin (#386233)

This commit is contained in:
Yt
2025-03-02 06:10:33 -05:00
committed by GitHub
2 changed files with 4 additions and 2 deletions
+2 -1
View File
@@ -57,7 +57,8 @@ let
in
"[${lib.concatStringsSep "," options}]";
LC_ALL = "C.UTF-8";
LANG = if stdenv.isLinux then "C.UTF-8" else "C";
LC_CTYPE = if stdenv.isLinux then "C.UTF-8" else "UTF-8";
# add to ERL_LIBS so other modules can find at runtime.
# http://erlang.org/doc/man/code.html#code-path
@@ -134,7 +134,8 @@ stdenv.mkDerivation (
in
"[${lib.concatStringsSep "," options}]";
LC_ALL = "C.UTF-8";
LANG = if stdenv.isLinux then "C.UTF-8" else "C";
LC_CTYPE = if stdenv.isLinux then "C.UTF-8" else "UTF-8";
postUnpack =
''