elixir: Fix locale problem on NixOS
It looks like Erlang/OTP requires access to LOCALE_ARCHIVE for locales to correctly work. Elixir depends on this here:
7a556b8f26/lib/elixir/src/elixir.erl (L76)
Fixes #30047
This commit is contained in:
parent
b465d9c1ff
commit
558db539f5
@ -22,6 +22,8 @@ in
|
|||||||
|
|
||||||
buildInputs = [ erlang rebar makeWrapper ];
|
buildInputs = [ erlang rebar makeWrapper ];
|
||||||
|
|
||||||
|
LOCALE_ARCHIVE = stdenv.lib.optionalString stdenv.isLinux
|
||||||
|
"${pkgs.glibcLocales}/lib/locale/locale-archive";
|
||||||
LANG = "en_US.UTF-8";
|
LANG = "en_US.UTF-8";
|
||||||
LC_TYPE = "en_US.UTF-8";
|
LC_TYPE = "en_US.UTF-8";
|
||||||
|
|
||||||
@ -30,8 +32,8 @@ in
|
|||||||
inherit debugInfo;
|
inherit debugInfo;
|
||||||
|
|
||||||
buildFlags = if debugInfo
|
buildFlags = if debugInfo
|
||||||
then "ERL_COMPILER_OPTIONS=debug_info"
|
then "ERL_COMPILER_OPTIONS=debug_info"
|
||||||
else "";
|
else "";
|
||||||
|
|
||||||
preBuild = ''
|
preBuild = ''
|
||||||
# The build process uses ./rebar. Link it to the nixpkgs rebar
|
# The build process uses ./rebar. Link it to the nixpkgs rebar
|
||||||
|
Loading…
x
Reference in New Issue
Block a user