File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 11{ nixpkgs ? import ./nix/nixpkgs.nix
22, system ? builtins . currentSystem
3- , overlays ? [ ]
3+ , overlays ? [ ]
44} :
55import nixpkgs {
66 inherit system ;
Original file line number Diff line number Diff line change 4848
4949 opCat = { name , value } :
5050 let
51- opCmd = { name , help , ...} :
51+ opCmd = { name , help , ... } :
5252 let
5353 len = maxCommandLength - ( builtins . stringLength name ) ;
5454 in
5757 else
5858 "${ pad name len } - ${ help } " ;
5959 in
60- "\n [${ name } ]\n " + builtins . concatStringsSep "\n " ( map opCmd value ) ;
60+ "\n [${ name } ]\n " + builtins . concatStringsSep "\n " ( map opCmd value ) ;
6161 in
6262 builtins . concatStringsSep "\n " ( map opCat commandByCategoriesSorted )
6363 ;
226226 ] ;
227227
228228 packages =
229- builtins . filter ( x : x != null )
229+ builtins . filter
230+ ( x : x != null )
230231 ( map ( x : x . package ) config . commands ) ;
231232 } ;
232233}
You can’t perform that action at this time.
0 commit comments