authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2022-09-18 01:06:16 -07:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2022-09-18 01:06:16 -07:00
logef9721811ce58c5bc6af737642a67bc6b996218c
tree85f46ac160444633e94414002b997aa63fc521f8
parentd68545faf237ef3c319d85cfb2dfdf894df61f08

cmd/license: alphabetize output


2 files changed, 15 insertions(+), 14 deletions(-)

licenses.txt+14-14
...@@ -2,21 +2,21 @@ MIT:...@@ -2,21 +2,21 @@ MIT:
2= https://spdx.org/licenses/MIT2= https://spdx.org/licenses/MIT
3- This3- This
4- git https://gist.github.com/nektro/d468fea84f8217e4c26ee8fbeeea38cc4- git https://gist.github.com/nektro/d468fea84f8217e4c26ee8fbeeea38cc
5- git https://github.com/yaml/libyaml
6- git https://github.com/nektro/zig-extras
7- git https://github.com/nektro/zig-range
8- git https://github.com/nektro/zig-ansi
9- git https://github.com/ziglibs/known-folders
10- git https://github.com/nektro/zig-licenses
11- git https://github.com/truemedian/zfetch
12- git https://github.com/truemedian/hzzp
13- git https://github.com/nektro/iguanaTLS
14- git https://github.com/MasterQ32/zig-uri5- git https://github.com/MasterQ32/zig-uri
15- git https://github.com/nektro/zig-json6- git https://github.com/marlersoft/zigwin32
7- git https://github.com/nektro/arqv-ini
8- git https://github.com/nektro/iguanaTLS
9- git https://github.com/nektro/zig-ansi
16- git https://github.com/nektro/zig-detect-license10- git https://github.com/nektro/zig-detect-license
17- git https://github.com/nektro/zig-licenses-text11- git https://github.com/nektro/zig-extras
18- git https://github.com/nektro/zig-leven
19- git https://github.com/nektro/zig-inquirer12- git https://github.com/nektro/zig-inquirer
20- git https://github.com/nektro/arqv-ini13- git https://github.com/nektro/zig-json
14- git https://github.com/nektro/zig-leven
15- git https://github.com/nektro/zig-licenses
16- git https://github.com/nektro/zig-licenses-text
17- git https://github.com/nektro/zig-range
21- git https://github.com/nektro/zig-time18- git https://github.com/nektro/zig-time
22- git https://github.com/marlersoft/zigwin3219- git https://github.com/truemedian/hzzp
20- git https://github.com/truemedian/zfetch
21- git https://github.com/ziglibs/known-folders
22- git https://github.com/yaml/libyaml
src/cmd/license.zig+1
...@@ -29,6 +29,7 @@ pub fn execute(args: [][]u8) !void {...@@ -29,6 +29,7 @@ pub fn execute(args: [][]u8) !void {
29 var master_list = List.init(gpa);29 var master_list = List.init(gpa);
30 errdefer master_list.deinit();30 errdefer master_list.deinit();
31 try common.collect_pkgs(top_module, &master_list);31 try common.collect_pkgs(top_module, &master_list);
32 std.sort.sort(zigmod.Module, master_list.items, {}, zigmod.Module.lessThan);
3233
33 var map = Map.init(gpa);34 var map = Map.init(gpa);
34 errdefer map.deinit();35 errdefer map.deinit();