diff options
author | Vincent Ambo <tazjin@google.com> | 2020-01-29T10·05+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2020-01-29T10·12+0000 |
commit | 8e8bbbca04c70a2132db6277e94ebce568e3c371 (patch) | |
tree | 1082e94685d6145be24f1687e90c2cbb1fd89869 /nix | |
parent | b0b52255bdad06a3ed6e807ca7aeb5930f1ec450 (diff) |
fix(nix/buildLisp): Ensure SBCL uses UTF-8 encoding r/473
Diffstat (limited to 'nix')
-rw-r--r-- | nix/buildLisp/default.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nix/buildLisp/default.nix b/nix/buildLisp/default.nix index 58ba492a0120..3203206fbe7e 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} |