From 8e8bbbca04c70a2132db6277e94ebce568e3c371 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Wed, 29 Jan 2020 10:05:22 +0000 Subject: [PATCH] fix(nix/buildLisp): Ensure SBCL uses UTF-8 encoding --- nix/buildLisp/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nix/buildLisp/default.nix b/nix/buildLisp/default.nix index 58ba492a0..3203206fb 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}