Commit 39ae1e93 authored by Alfredo Di Napoli's avatar Alfredo Di Napoli

Set LOCALE_ARCHIVE only if on Linux

parent 55478978
Pipeline #4348 canceled with stages
......@@ -8,7 +8,7 @@ let
in
pkgs.pkgs.mkShell {
name = pkgs.shell.name;
LOCALE_ARCHIVE = "${pkgs.pkgs.glibcLocales}/lib/locale/locale-archive";
LOCALE_ARCHIVE = if pkgs.pkgs.stdenv.isLinux then "${pkgs.pkgs.glibcLocales}/lib/locale/locale-archive" else "";
#home.sessionVariables.LOCALE_ARCHIVE = "${pkgs.glibcLocales}/lib/locale/locale-archive";
shellHook = pkgs.shell.shellHook;
buildInputs = pkgs.shell.buildInputs ++ myBuildInputs;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment