···569569 shutdown_queue.task_done()
570570 threading.Thread(target=shutdown_worker, daemon=True).start()
571571572572- ${pkgs.lib.optionalString pkgs.stdenv.isx86_64 ''
572572+ ${pkgs.lib.optionalString pkgs.stdenv.hostPlatform.isx86_64 ''
573573 # Only run the MySQL tests on x86_64 so we don't have to debug MySQL ARM issues.
574574 run_mattermost_tests(
575575 shutdown_queue,
···5757 in
5858 "[${lib.concatStringsSep "," options}]";
59596060- LANG = if stdenv.isLinux then "C.UTF-8" else "C";
6161- LC_CTYPE = if stdenv.isLinux then "C.UTF-8" else "UTF-8";
6060+ LANG = if stdenv.hostPlatform.isLinux then "C.UTF-8" else "C";
6161+ LC_CTYPE = if stdenv.hostPlatform.isLinux then "C.UTF-8" else "UTF-8";
62626363 # add to ERL_LIBS so other modules can find at runtime.
6464 # http://erlang.org/doc/man/code.html#code-path
+2-2
pkgs/development/beam-modules/mix-release.nix
···138138 in
139139 "[${lib.concatStringsSep "," options}]";
140140141141- LANG = if stdenv.isLinux then "C.UTF-8" else "C";
142142- LC_CTYPE = if stdenv.isLinux then "C.UTF-8" else "UTF-8";
141141+ LANG = if stdenv.hostPlatform.isLinux then "C.UTF-8" else "C";
142142+ LC_CTYPE = if stdenv.hostPlatform.isLinux then "C.UTF-8" else "UTF-8";
143143144144 postUnpack =
145145 ''