elixir: remove obosolete glibcLocales

As C.UTF-8 is available now.
This commit is contained in:
cw 2019-06-21 11:03:34 +02:00
parent d3157cbede
commit 24a2ee8fac
1 changed files with 2 additions and 4 deletions

View File

@ -22,10 +22,8 @@ in
buildInputs = [ erlang rebar makeWrapper ];
LOCALE_ARCHIVE = stdenv.lib.optionalString stdenv.isLinux
"${pkgs.glibcLocales}/lib/locale/locale-archive";
LANG = "en_US.UTF-8";
LC_TYPE = "en_US.UTF-8";
LANG = "C.UTF-8";
LC_TYPE = "C.UTF-8";
setupHook = ./setup-hook.sh;