···569 shutdown_queue.task_done()
570 threading.Thread(target=shutdown_worker, daemon=True).start()
571572- ${pkgs.lib.optionalString pkgs.stdenv.isx86_64 ''
573 # Only run the MySQL tests on x86_64 so we don't have to debug MySQL ARM issues.
574 run_mattermost_tests(
575 shutdown_queue,
···569 shutdown_queue.task_done()
570 threading.Thread(target=shutdown_worker, daemon=True).start()
571572+ ${pkgs.lib.optionalString pkgs.stdenv.hostPlatform.isx86_64 ''
573 # Only run the MySQL tests on x86_64 so we don't have to debug MySQL ARM issues.
574 run_mattermost_tests(
575 shutdown_queue,
···341 ];
342 platforms = builtins.attrNames ovftoolSystems;
343 mainProgram = "ovftool";
344- knownVulnerabilities = lib.optionals (stdenv.isDarwin) [
345 "The bundled version of openssl 1.0.2zj in ovftool for Darwin has open vulnerabilities."
346 "https://openssl-library.org/news/vulnerabilities-1.0.2/"
347 "CVE-2024-0727"
···341 ];
342 platforms = builtins.attrNames ovftoolSystems;
343 mainProgram = "ovftool";
344+ knownVulnerabilities = lib.optionals (stdenv.hostPlatform.isDarwin) [
345 "The bundled version of openssl 1.0.2zj in ovftool for Darwin has open vulnerabilities."
346 "https://openssl-library.org/news/vulnerabilities-1.0.2/"
347 "CVE-2024-0727"
···57 in
58 "[${lib.concatStringsSep "," options}]";
5960- LANG = if stdenv.isLinux then "C.UTF-8" else "C";
61- LC_CTYPE = if stdenv.isLinux then "C.UTF-8" else "UTF-8";
6263 # add to ERL_LIBS so other modules can find at runtime.
64 # http://erlang.org/doc/man/code.html#code-path
···57 in
58 "[${lib.concatStringsSep "," options}]";
5960+ LANG = if stdenv.hostPlatform.isLinux then "C.UTF-8" else "C";
61+ LC_CTYPE = if stdenv.hostPlatform.isLinux then "C.UTF-8" else "UTF-8";
6263 # add to ERL_LIBS so other modules can find at runtime.
64 # http://erlang.org/doc/man/code.html#code-path
+2-2
pkgs/development/beam-modules/mix-release.nix
···138 in
139 "[${lib.concatStringsSep "," options}]";
140141- LANG = if stdenv.isLinux then "C.UTF-8" else "C";
142- LC_CTYPE = if stdenv.isLinux then "C.UTF-8" else "UTF-8";
143144 postUnpack =
145 ''
···138 in
139 "[${lib.concatStringsSep "," options}]";
140141+ LANG = if stdenv.hostPlatform.isLinux then "C.UTF-8" else "C";
142+ LC_CTYPE = if stdenv.hostPlatform.isLinux then "C.UTF-8" else "UTF-8";
143144 postUnpack =
145 ''