about summary refs log tree commit diff
path: root/nix/buildLisp
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@google.com>2020-01-29T10·05+0000
committerVincent Ambo <tazjin@google.com>2020-01-29T10·12+0000
commit8e8bbbca04c70a2132db6277e94ebce568e3c371 (patch)
tree1082e94685d6145be24f1687e90c2cbb1fd89869 /nix/buildLisp
parentb0b52255bdad06a3ed6e807ca7aeb5930f1ec450 (diff)
fix(nix/buildLisp): Ensure SBCL uses UTF-8 encoding r/473
Diffstat (limited to 'nix/buildLisp')
-rw-r--r--nix/buildLisp/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nix/buildLisp/default.nix b/nix/buildLisp/default.nix
index 58ba492a01..3203206fbe 100644
--- a/nix/buildLisp/default.nix
+++ b/nix/buildLisp/default.nix
@@ -116,6 +116,7 @@ let
     lispDeps = allDeps deps;
   in runCommandNoCC "${name}-cllib" {
     LD_LIBRARY_PATH = lib.makeLibraryPath lispNativeDeps;
+    LANG = "C.UTF-8";
   } ''
     ${sbcl}/bin/sbcl --script ${genCompileLisp srcs lispDeps}