fix(nix/buildLisp): Ensure SBCL uses UTF-8 encoding

This commit is contained in:
Vincent Ambo 2020-01-29 10:05:22 +00:00
parent b0b52255bd
commit 8e8bbbca04

View file

@ -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}