bitcoin: fix tests on darwin by using en_US.UTF-8 instead of C.UTF-8

+1 -1
+1 -1
pkgs/applications/blockchains/bitcoin/default.nix
··· 79 79 doCheck = true; 80 80 81 81 checkFlags = 82 - [ "LC_ALL=C.UTF-8" ] 82 + [ "LC_ALL=en_US.UTF-8" ] 83 83 # QT_PLUGIN_PATH needs to be set when executing QT, which is needed when testing Bitcoin's GUI. 84 84 # See also https://github.com/NixOS/nixpkgs/issues/24256 85 85 ++ optional withGui "QT_PLUGIN_PATH=${qtbase}/${qtbase.qtPluginPrefix}";