##// END OF EJS Templates
nix-shell: set the LOCALE_ARCHIVE paths so it uses nix-es local-archive instead of the system one.
marcink -
r496:c93a0ad3 default
parent child Browse files
Show More
@@ -85,6 +85,13 b' let'
85 pkgs.subversion
85 pkgs.subversion
86 ];
86 ];
87
87
88 # set some default locale env variables
89 LC_ALL = "en_US.UTF-8";
90 LOCALE_ARCHIVE =
91 if pkgs.stdenv.isLinux
92 then "${pkgs.glibcLocales}/lib/locale/locale-archive"
93 else "";
94
88 # Add bin directory to path so that tests can find 'vcsserver'.
95 # Add bin directory to path so that tests can find 'vcsserver'.
89 preCheck = ''
96 preCheck = ''
90 export PATH="$out/bin:$PATH"
97 export PATH="$out/bin:$PATH"
General Comments 0
You need to be logged in to leave comments. Login now