about summary refs log tree commit diff
path: root/pkgs/applications/blockchains
diff options
context:
space:
mode:
authorPavol Rusnak <pavol@rusnak.io>2021-11-21 20:01:05 +0100
committerPavol Rusnak <pavol@rusnak.io>2021-11-21 20:01:05 +0100
commit783dbd1ba87c1f5e8624c140f0c7d1f0f0cdc182 (patch)
treed044dfcb151ea7b10326825b812942dc42339bd0 /pkgs/applications/blockchains
parentef9bcf24ca2ee5c6d348b1b95c3a8d59aba33490 (diff)
bitcoin: fix tests on darwin by using en_US.UTF-8 instead of C.UTF-8
Diffstat (limited to 'pkgs/applications/blockchains')
-rw-r--r--pkgs/applications/blockchains/bitcoin/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/blockchains/bitcoin/default.nix b/pkgs/applications/blockchains/bitcoin/default.nix
index 7253d3dff3772..e1a0dd207a0af 100644
--- a/pkgs/applications/blockchains/bitcoin/default.nix
+++ b/pkgs/applications/blockchains/bitcoin/default.nix
@@ -79,7 +79,7 @@ stdenv.mkDerivation rec {
   doCheck = true;
 
   checkFlags =
-    [ "LC_ALL=C.UTF-8" ]
+    [ "LC_ALL=en_US.UTF-8" ]
     # QT_PLUGIN_PATH needs to be set when executing QT, which is needed when testing Bitcoin's GUI.
     # See also https://github.com/NixOS/nixpkgs/issues/24256
     ++ optional withGui "QT_PLUGIN_PATH=${qtbase}/${qtbase.qtPluginPrefix}";