We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b0b437 commit b991ac1Copy full SHA for b991ac1
1 file changed
nix/commands/devshell.nix
@@ -137,7 +137,8 @@ rec {
137
then ""
138
else processHelp help
139
}
140
- ${lib.getExe pkgs.perl} ${./scripts/formatCommand.pl} '${toString nameWidth}' '${helpWidth}' '${helpHeight}' '${name}' "''$${highlyUnlikelyName}"'';
+ ${lib.getExe pkgs.perl} ${./scripts/formatCommand.pl} '${toString nameWidth}' '${helpWidth}' '${helpHeight}' '${name}' "''$${highlyUnlikelyName}"
141
+ '';
142
in
143
command;
144
commandsColumns = lib.concatMapStringsSep "\n" opCmd cmd;
@@ -148,5 +149,10 @@ rec {
148
149
${commandsColumns}
150
'';
151
- lib.concatStringsSep "\n" (map opCat commandByCategoriesSorted) + "\n";
152
+ ''
153
+ {
154
+ export LC_ALL="C"
155
+ ${lib.concatStringsSep "\n" (map opCat commandByCategoriesSorted) + "\n"}
156
+ }
157
158
0 commit comments