-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.html
2714 lines (2711 loc) · 290 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://rawcdn.githack.com/oscarmorrison/md-page/master/md-page.js"></script>
<title>📦📱 Termux Packages 📱📦</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #121212;
color: #e0e0e0;
margin: 0;
padding: 20px;
}
table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
}
th, td {
padding: 12px;
text-align: left;
border: 1px solid #424242;
}
th {
background-color: #333333;
}
tr:nth-child(even) {
background-color: #1e1e1e;
}
tr:nth-child(odd) {
background-color: #1e1e1e;
}
a {
color: #80cbc4;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
caption {
font-size: 1.5em;
margin-bottom: 10px;
}
</style>
</head>
<body>
<noscript>
---
|Package | Version | Description | Homepage |
|--------|---------|-------------|----------|
| **0verkill** | 1:0.16 | Bloody 2D action deathmatch-like game in ASCII-ART | https://github.com/hackndev/0verkill |
| **2048-c** | 2022.10.23 | Console version of the game '2048' for GNU/Linux | https://github.com/mevdschee/2048.c |
| **2ping** | 4.5.1-4 | A bi-directional ping utility | https://www.finnie.org/software/2ping/ |
| **6tunnel** | 0.13 | Allows you to use services provided by IPv6 hosts with IPv4-only applications and vice-versa | https://github.com/wojtekka/6tunnel |
| **7zip** | 24.08 | 7-Zip file archiver with a high compression ratio | https://www.7-zip.org |
| **8086tiny** | 1.25-4 | A PC XT-compatible emulator/virtual machine | https://github.com/adriancable/8086tiny |
| **a52dec** | 0.8.0-1 | A test program for liba52 | http://liba52.sourceforge.net/ |
| **aalib** | 1.4rc5-11 | A portable ASCII art graphic library | https://sourceforge.net/projects/aa-project/ |
| **aalib-static** | 1.4rc5-11 | Static libraries for aalib | https://sourceforge.net/projects/aa-project/ |
| **aapt** | 13.0.0.6-16 | Android Asset Packaging Tool | https://elinux.org/Android_aapt |
| **aapt2** | 13.0.0.6-16 | AAPT2 (Android Asset Packaging Tool) | https://elinux.org/Android_aapt |
| **abduco** | 0.6-3 | Clean and simple terminal session manager | https://www.brain-dump.org/projects/abduco/ |
| **abook** | 0.6.1 | Abook is a text-based addressbook program designed to use with mutt mail client | http://abook.sourceforge.net/ |
| **abootimg** | 0.6-2 | Pack or unpack android boot images | https://gitlab.com/ajs124/abootimg |
| **abseil-cpp** | 20240116.2-1 | Abseil C++ Common Libraries | https://abseil.io/ |
| **ack-grep** | 3.7.0 | Tool like grep optimized for programmers | https://beyondgrep.com/ |
| **acr** | 2.1.4 | A fully compatible autoconf replacement | https://github.com/radare/acr |
| **adms** | 2.3.7 | A code generator for the Verilog-AMS language | https://github.com/qucs/adms |
| **aerc** | 0.18.2 | A pretty good email client | https://aerc-mail.org/ |
| **agate** | 3.3.10 | Very simple server for the Gemini hypertext protocol | https://github.com/mbrubeck/agate |
| **age** | 1:1.2.0 | A simple, modern and secure encryption tool with small explicit keys, no config options, and UNIX-style composability | https://github.com/FiloSottile/age |
| **agg** | 1.5.0 | asciinema gif generator | https://github.com/asciinema/agg |
| **aha** | 0.5.1 | Converts ANSI escape sequences of a unix terminal to HTML code | https://github.com/theZiz/aha |
| **aichat** | 0.23.0 | A powerful chatgpt cli | https://github.com/sigoden/aichat |
| **aidl** | 13.0.0.6-16 | Android Interface Definition Language (AIDL) | https://elinux.org/Android_aapt |
| **alass** | 2.0.0-2 | Automatic Language-Agnostic Subtitle Synchronization | https://github.com/kaegi/alass |
| **alembic** | 1.8.7 | A framework for sharing scene data that includes a C++ lib, a file format and client plugin | https://alembic.io |
| **algernon** | 1.17.1 | Small self-contained web server with Lua, Markdown, QUIC, Redis and PostgreSQL support | https://algernon.roboticoverlords.org/ |
| **alist** | 3.39.1 | A file list program that supports multiple storage | https://alist.nn.ci |
| **alpine** | 2.26 | Fast, easy to use email client | http://alpine.x10host.com/ |
| **alsa-lib** | 1.2.13 | The Advanced Linux Sound Architecture (ALSA) - library | https://www.alsa-project.org |
| **alsa-utils** | 1.2.13 | The Advanced Linux Sound Architecture (ALSA) - utils | https://www.alsa-project.org |
| **alsa-utils-static** | 1.2.13 | Static libraries for alsa-utils | https://www.alsa-project.org |
| **amber** | 0.6.0 | A code search / replace tool | https://github.com/dalance/amber |
| **amfora** | 1.10.0-1 | Aims to be the best looking Gemini client | https://github.com/makeworld-the-better-one/amfora |
| **anacron** | 2.3 | A periodic command scheduler | http://anacron.sourceforge.net/ |
| **android-tools** | 35.0.2 | Android platform tools | https://developer.android.com/ |
| **anewer** | 0.1.6 | Append lines from stdin to a file if these lines do not present in that file (aHash-based uniq) | https://github.com/ysf/anewer |
| **angband** | 4.2.5 | Dungeon exploration adventure game | https://rephial.org/ |
| **angle-android** | 2.1.23487-faae3c32-1 | A conformant OpenGL ES implementation for Windows, Mac, Linux, iOS and Android | https://chromium.googlesource.com/angle/angle |
| **angle-grinder** | 0.19.4 | Slice and dice logs on the command line | https://github.com/rcoh/angle-grinder |
| **ani-cli** | 4.9 | A cli to browse and watch anime | https://github.com/pystardust/ani-cli |
| **ansifilter** | 2.21 | Strip or convert ANSI codes into HTML, (La)Tex, RTF, or BBCode | http://www.andre-simon.de/doku/ansifilter/en/ansifilter.php |
| **ant** | 1.10.15 | Java based build tool like make | https://ant.apache.org/ |
| **antibody** | 6.1.1-2 | The fastest shell plugin manager | https://github.com/getantibody/antibody |
| **antiword** | 0.37-3 | A free MS Word reader | https://en.m.wikipedia.org/wiki/Antiword |
| **aom-tools** | 3.10.0 | Command-line tools using AOMedia library | https://aomedia.org/ |
| **apache-orc** | 2.0.2 | Columnar storage for Hadoop workloads | https://orc.apache.org/ |
| **apache2** | 1:2.4.62-1 | Apache Web Server | https://httpd.apache.org |
| **apkeep** | 0.17.0 | A command-line tool for downloading APK files from various sources | https://github.com/EFForg/apkeep |
| **apksigner** | 33.0.1 | APK signing tool from Android SDK | https://developer.android.com/studio/command-line/apksigner |
| **appstream** | 1.0.3 | Provides a standard for creating app stores across distributions | https://www.freedesktop.org/wiki/Distributions/AppStream/ |
| **apr** | 1.7.5 | Apache Portable Runtime Library | https://apr.apache.org/ |
| **apr-static** | 1.7.5 | Static libraries for apr | https://apr.apache.org/ |
| **apr-util** | 1.6.3-2 | Apache Portable Runtime Utility Library | https://apr.apache.org/ |
| **apr-util-static** | 1.6.3-2 | Static libraries for apr-util | https://apr.apache.org/ |
| **apt** | 2.8.1-1 | Front-end for the dpkg package manager | https://packages.debian.org/apt |
| **apt-file** | 3.3 | search for files within packages | https://wiki.debian.org/apt-file |
| **apt-ftparchive** | 2.8.1-1 | apt-ftparchive is the command line tool that generates the index files that APT uses to access a distribution source | https://packages.debian.org/apt |
| **apt-transport-tor** | 2.8.1-1 | APT transport for anonymous package downloads via Tor | https://packages.debian.org/apt |
| **aptitude** | 0.8.13 | terminal-based package manager | https://wiki.debian.org/Aptitude |
| **aptly** | 1.5.0-3 | A Swiss Army knife for Debian repository management | https://www.aptly.info |
| **argon2** | 20190702-1 | A password-hashing function (reference C implementation) | https://github.com/P-H-C/phc-winner-argon2 |
| **argon2-static** | 20190702-1 | Static libraries for argon2 | https://github.com/P-H-C/phc-winner-argon2 |
| **argp** | 1.5.0 | Standalone version of arguments parsing functions from GLIBC | https://github.com/argp-standalone/argp-standalone |
| **argp-static** | 1.5.0 | Static libraries for argp | https://github.com/argp-standalone/argp-standalone |
| **aria2** | 1.37.0 | Download utility supporting HTTP/HTTPS, FTP, BitTorrent and Metalink | https://aria2.github.io |
| **arj** | 3.10.22-5 | Open-source version of arj archiver | http://arj.sourceforge.net/ |
| **artalk** | 2.9.1 | A self-hosted comment system | https://artalk.js.org/ |
| **arturo** | 0.9.83 | Simple, expressive & portable programming language for efficient scripting | https://arturo-lang.io |
| **asciidoc** | 10.2.1-1 | Text document format for short documents, articles, books and UNIX man pages. | https://asciidoc.org |
| **asciidoctor** | 2.0.23 | An implementation of AsciiDoc in Ruby | https://asciidoctor.org/ |
| **asciinema** | 2.4.0-1 | Record and share your terminal sessions, the right way | https://asciinema.org/ |
| **asm-lsp** | 0.9.0 | language server for NASM/GAS/GO assembly | https://github.com/bergercookie/asm-lsp |
| **aspell** | 0.60.8.1 | A free and open source spell checker designed to replace Ispell | http://aspell.net |
| **aspell-de** | 1:20161207.7.0 | German dictionary for aspell | http://aspell.net/ |
| **aspell-en** | 1:2020.12.07 | English dictionary for aspell | http://aspell.net/ |
| **aspell-es** | 2:1.11-2-0 | Spanish dictionary for aspell | http://aspell.net/ |
| **aspell-fr** | 2:0.50-3-1 | French dictionary for aspell | http://aspell.net/ |
| **aspell-static** | 0.60.8.1 | Static libraries for aspell | http://aspell.net |
| **assimp** | 5.4.3 | Library to import various well-known 3D model formats in an uniform manner | https://assimp.sourceforge.net/index.html |
| **assimp-static** | 5.3.1 | Static libraries for assimp | https://assimp.sourceforge.net/index.html |
| **astra-sm** | 2019.06.19 | Software for digital TV broadcasting | https://gitlab.com/berdyansk/astra-sm |
| **asymptote** | 2.89 | A powerful descriptive vector graphics language for technical drawing | https://asymptote.sourceforge.io/ |
| **at** | 3.2.5 | AT and batch delayed command scheduling utility and daemon | https://salsa.debian.org/debian/at |
| **at-spi2-core** | 2.54.0 | Assistive Technology Service Provider Interface (AT-SPI) | https://wiki.gnome.org/Accessibility |
| **atomicparsley** | 1:20240608.083822.1ed9031 | Read, parse and set metadata of MPEG-4 and 3gp files | https://github.com/wez/atomicparsley |
| **atomvm** | 1:0.6.5 | The minimal Erlang VM implementation | https://github.com/bettio/AtomVM |
| **atool** | 0.39.0-1 | tool for managing file archives of various types | https://www.nongnu.org/atool |
| **attr** | 2.5.2 | Utilities for manipulating filesystem extended attributes | http://savannah.nongnu.org/projects/attr/ |
| **attr-static** | 2.5.2 | Static libraries for attr | http://savannah.nongnu.org/projects/attr/ |
| **atuin** | 18.3.0 | Magical shell history | https://atuin.sh/ |
| **aubio** | 0.4.9-2 | A library to label music and sounds | https://aubio.org/ |
| **aubio-static** | 0.4.9-2 | Static libraries for aubio | https://aubio.org/ |
| **autoconf** | 2.72 | Creator of shell scripts to configure source code packages | https://www.gnu.org/software/autoconf/autoconf.html |
| **autoconf-archive** | 2024.10.16 | A collection of freely re-usable Autoconf macros | https://www.gnu.org/software/autoconf-archive/ |
| **autoconf213** | 2.13 | Creator of shell scripts to configure source code packages (legacy v2.13) | https://www.gnu.org/software/autoconf/autoconf.html |
| **autojump** | 22.5.3-1 | A faster way to navigate your filesystem | https://github.com/wting/autojump |
| **automake** | 1.17 | Tool for automatically generating Makefile.in files | https://www.gnu.org/software/automake/ |
| **autossh** | 1.4g-3 | Automatically restart SSH sessions and tunnels | https://www.harding.motd.ca/autossh/ |
| **aview** | 1.3.0rc1-5 | High quality ascii-art image browser and animation player | http://aa-project.sourceforge.net/aview/ |
| **avra** | 1.4.2 | Assember for the Atmel AVR microcontroller family | https://github.com/Ro5bert/avra |
| **await** | 1.0.7 | Runs list of commands in parallel and waits for their termination | https://await-cli.app/ |
| **awesomeshot** | 1.1.0 | A command-line screenshot tool written in bash | https://github.com/mayTermux/awesomeshot |
| **axel** | 2.17.14 | light command line download accelerator | https://github.com/axel-download-accelerator/axel |
| **b3sum** | 1.5.4 | A command line utility for calculating BLAKE3 hashes, similar to Coreutils tools like b2sum or md5sum | https://github.com/BLAKE3-team/BLAKE3/tree/master/b3sum |
| **babl** | 0.1.110 | Dynamic pixel format translation library | https://gegl.org/babl/ |
| **bacula-fd** | 15.0.2 | Bacula backup software | https://www.bacula.org |
| **bacula-fd-static** | 15.0.2 | Static libraries for bacula-fd | https://www.bacula.org |
| **badvpn-udpgw** | 1.999.130 | UDP gateway for BadVPN | https://github.com/ambrop72/badvpn |
| **barcode** | 0.99-4 | Tool to convert text strings to printed bars | https://www.gnu.org/software/barcode/ |
| **base16384** | 2.3.1 | Encode binary to printable utf16be | https://github.com/fumiama/base16384 |
| **bash** | 5.2.37 | A sh-compatible shell that incorporates useful features from the Korn shell (ksh) and C shell (csh) | https://www.gnu.org/software/bash/ |
| **bash-completion** | 2.14.0 | Programmable completion for the bash shell | https://github.com/scop/bash-completion |
| **bastet** | 0.43.2-10 | Tetris clone with 'bastard' block-choosing AI | http://fph.altervista.org/prog/bastet.html |
| **bat** | 0.24.0-2 | A cat(1) clone with wings | https://github.com/sharkdp/bat |
| **bc** | 1.07.1-1 | Arbitrary precision numeric processing language | https://www.gnu.org/software/bc/ |
| **bc-gh** | 7.0.3 | Unix dc and POSIX bc with GNU and BSD extensions | https://git.gavinhoward.com/gavin/bc |
| **bdsup2sub** | 4.0.1 | A subtitle conversion tool for image based stream formats | https://github.com/mjuhasz/BDSup2Sub |
| **beanshell** | 2.1.1-1 | Small, free, embeddable, source level Java interpreter with object based scripting language features written in Java | https://github.com/beanshell/beanshell |
| **bed** | 0.2.7 | Binary editor written in GO | https://github.com/itchyny/bed |
| **bftpd** | 6.2 | Small, easy-to-configure FTP server | https://bftpd.sourceforge.net/ |
| **bgrep** | 1.0-3 | Binary string grep tool | https://debugmo.de/2009/04/bgrep-a-binary-grep/ |
| **biboumi** | 9.0-4 | An XMPP gateway that connects to IRC servers and translates between the two protocols | https://biboumi.louiz.org/ |
| **binaryen** | 119 | Binaryen is a compiler and toolchain infrastructure library for WebAssembly | https://github.com/WebAssembly/binaryen |
| **binutils** | 2.43.1 | GNU Binutils (metapackage) | https://www.gnu.org/software/binutils/ |
| **binutils-bin** | 2.43.1 | Collection of binary tools, the main ones being ld, the GNU linker, and as, the GNU assembler | https://www.gnu.org/software/binutils/ |
| **binutils-cross** | 2.43.1 | GNU Binutils for cross build on the host (NOT for Termux) | https://www.gnu.org/software/binutils/ |
| **binutils-gold** | 2.43.1 | gold linker | https://www.gnu.org/software/binutils/ |
| **binutils-is-llvm** | 0.3-3 | Use llvm as binutils | https://github.com/trentbuck/binutils-is-llvm |
| **binutils-libs** | 2.43.1 | GNU Binutils libraries | https://www.gnu.org/software/binutils/ |
| **bionic-host** | 8.0.0-r51-5 | bionic libc, libm, libdl and dynamic linker for ubuntu host | https://android.googlesource.com/platform/bionic/ |
| **bison** | 3.8.2-3 | General-purpose parser generator | https://www.gnu.org/software/bison/ |
| **bison-static** | 3.8.2-3 | Static libraries for bison | https://www.gnu.org/software/bison/ |
| **bitcoin** | 28.0 | Bitcoin Core | https://bitcoincore.org/ |
| **bitlbee** | 3.6-1-0 | An IRC to other chat networks gateway | https://www.bitlbee.org/ |
| **bk** | 0.6.0 | A terminal EPUB reader | https://github.com/aeosynth/bk |
| **blackbox** | 1:1.20220610 | Safely store secrets in Git/Mercurial/Subversion | https://github.com/StackExchange/blackbox |
| **blade** | 0.0.86 | A simple, fast, clean and dynamic language | https://bladelang.com/ |
| **blas-openblas** | 0.3.28 | OpenBLAS symlinks for BLAS/CBLAS/LAPACK/LAPACKE | https://www.openblas.net |
| **blink** | 1:1.1.0 | Tiny x86-64 Linux emulator | https://justine.lol/blinkenlights/ |
| **blk-utils** | 2.40.2-2 | Utilities for handling block device attributes | https://en.wikipedia.org/wiki/Util-linux |
| **blogc** | 0.20.1 | A blog compiler | https://blogc.rgm.io/ |
| **bmon** | 4.0-3 | Bandwidth monitor and rate estimator | https://github.com/tgraf/bmon |
| **boinc** | 8.0.4 | Open-source software for volunteer computing | https://boinc.berkeley.edu/ |
| **boinctui** | 2.7.1 | curses based manager for Boinc client | https://sourceforge.net/projects/boinctui/ |
| **bombadillo** | 2.4.0-2 | A non-web client for the terminal, supporting Gopher, Gemini and much more | https://bombadillo.colorfield.space/ |
| **boost** | 1.83.0-3 | Free peer-reviewed portable C++ source libraries | https://boost.org |
| **boost-headers** | 1.83.0-3 | Boost header files | https://boost.org |
| **boost-static** | 1.83.0-3 | Static libraries for boost | https://boost.org |
| **bore** | 0.5.1 | Bore is a simple CLI tool for making tunnels to localhost | https://github.com/ekzhang/bore |
| **borgbackup** | 1.4.0-2 | Deduplicating and compressing backup program | https://www.borgbackup.org/ |
| **botan3** | 3.5.0 | Crypto and TLS for Modern C++ | https://botan.randombit.net/ |
| **botan3-static** | 3.5.0 | Static libraries for botan3 | https://botan.randombit.net/ |
| **boxes** | 2.3.1 | A command line filter program which draws ASCII art boxes around your input text | https://boxes.thomasjensen.com/ |
| **brainfuck** | 1:2.7.3 | Brainfuck Interpreter written in C | https://github.com/fabianishere/brainfuck |
| **brainfuck-static** | 1:2.7.3 | Static libraries for brainfuck | https://github.com/fabianishere/brainfuck |
| **brogue** | 1.14.1 | Roguelike dungeon crawling game (community edition) | https://sites.google.com/site/broguegame/ |
| **brook** | 20240606 | A cross-platform strong encryption and not detectable proxy. Zero-Configuration. | https://github.com/txthinking/brook |
| **broot** | 1.44.2 | A better way to navigate directories | https://github.com/Canop/broot |
| **brotli** | 1.1.0 | lossless compression algorithm and format (command line utility) | https://github.com/google/brotli |
| **brotli-static** | 1.0.9-1 | Static libraries for brotli | https://github.com/google/brotli |
| **bsd-finger** | 0.17-1 | User information lookup program | https://packages.debian.org/sid/source/bsd-finger |
| **bsd-games** | 1:3.3 | Classic text mode games from UNIX folklore | https://www.polyomino.org.uk/computer/software/bsd-games/ |
| **bsdtar** | 3.7.7 | The tar(1) and cpio(1) programs from FreeBSD, using libarchive | https://www.libarchive.org/ |
| **btfs2** | 3.0.0 | Decentralized file system integrating with TRON network and Bittorrent network | https://www.bittorrent.com/btfs/ |
| **buf** | 1.47.2 | A new way of working with Protocol Buffers | https://buf.build |
| **build-essential** | 4.1 | A metapackage that installs essential development tools | https://github.com/termux/termux-packages |
| **busybox** | 1.36.1-2 | Tiny versions of many common UNIX utilities into a single small executable | https://busybox.net/ |
| **bvi** | 1.4.2 | Binary file editor based on vi | http://bvi.sourceforge.net/ |
| **byacc** | 20240109 | byacc is generally conceded to be the best yacc variant available | https://invisible-island.net/byacc/ |
| **byobu** | 6.12 | Byobu is a GPLv3 open source text-based window manager and terminal multiplexer | https://byobu.co/ |
| **bzip2** | 1.0.8-6 | Tools for working with bzip2 compression | http://www.bzip.org/ |
| **c-ares** | 1.34.3 | Library for asynchronous DNS requests (including name resolves) | https://c-ares.haxx.se |
| **c-script** | 0.14 | Compile and execute C "scripts" in one go! | https://github.com/ryanmjacobs/c |
| **c-toxcore** | 0.2.18-p20240317-0 | Backend library for the Tox protocol | https://tox.chat |
| **c-toxcore-static** | 0.2.18-p20240317-0 | Static libraries for c-toxcore | https://tox.chat |
| **ca-certificates** | 1:2024.09.24 | Common CA certificates | https://curl.se/docs/caextract.html |
| **ca-certificates-java** | 1:2024.09.24 | Common CA certificates (java keystore format) | https://curl.se/docs/caextract.html |
| **cabal-install** | 3.8.1.0 | The command-line interface for Haskell-Cabal and Hackage | https://www.haskell.org/cabal/ |
| **cabextract** | 1.11 | A program to extract Microsoft cabinet (.CAB) files | https://www.cabextract.org.uk/ |
| **cadaver** | 0.24-3 | A command-line WebDAV client for Unix | https://notroj.github.io/cadaver/ |
| **caddy** | 2.8.4 | Fast, cross-platform HTTP/2 web server | https://caddyserver.com/ |
| **calc** | 2.15.1.0 | Arbitrary precision console calculator | http://www.isthe.com/chongo/tech/comp/calc/ |
| **calcurse** | 4.8.1-1 | calcurse is a calendar and scheduling application for the command line | https://calcurse.org/ |
| **calcurse-caldav** | 4.8.1-1 | Sync calcurse with remote caldav calendar | https://calcurse.org/ |
| **capnproto** | 1.0.2 | Data interchange format and capability-based RPC system | https://capnproto.org/ |
| **capstone** | 5.0.3 | Lightweight multi-platform, multi-architecture disassembly framework | https://www.capstone-engine.org/ |
| **capstone-static** | 5.0.3 | Static libraries for capstone | https://www.capstone-engine.org/ |
| **cargo-c** | 0.10.5 | Cargo C-ABI helpers | https://github.com/lu-zero/cargo-c |
| **catdoc** | 0.95-1 | Program which reads MS-Word file and prints readable ASCII text to stdout | http://www.wagner.pp.ru/~vitus/software/catdoc/ |
| **catgirl** | 2.2a | A TLS-only terminal IRC client | https://git.causal.agency/catgirl |
| **catimg** | 2.7.0 | Renders images in the terminal | https://posva.net/shell/retro/bash/2013/05/27/catimg |
| **cava** | 0.10.2-1 | Console-based Audio Visualizer. Works with MPD and Pulseaudio | https://github.com/karlstav/cava |
| **cavez-of-phear** | 0.6.1-1 | A Boulder Dash like game for consoles/terminals | https://github.com/AMDmi3/cavezofphear |
| **cavif-rs** | 1.5.5 | AVIF image creator in pure Rust | https://lib.rs/cavif |
| **cboard** | 0.7.5-4 | PGN browser, editor and chess engine frontend | https://benkibbey.wordpress.com/cboard/ |
| **cbonsai** | 1.3.1-1 | Grow bonsai trees in your terminal | https://gitlab.com/jallbrit/cbonsai |
| **cc65** | 2.19 | A free compiler for 6502 based system. | https://cc65.github.io/ |
| **ccache** | 4.10.2-1 | Compiler cache for fast recompilation of C/C++ code | https://ccache.samba.org |
| **cccc** | 3.2.0 | Source code counter and metrics tool for C++, C, and Java | https://sarnold.github.io/cccc/ |
| **ccextractor** | 0.94-4 | A tool used to produce subtitles for TV recordings | https://ccextractor.org/ |
| **ccls** | 0.20240505 | C/C++/ObjC language server | https://github.com/MaskRay/ccls |
| **ccrypt** | 1.11 | Secure encryption and decryption of files and streams utility | http://ccrypt.sourceforge.net/ |
| **cec-client** | 6.0.2-1 | Client applications for libCEC | http://libcec.pulse-eight.com/ |
| **ceu-lang** | 2019.07.17-2 | The Structured Synchronous Reactive Programming Language Céu | https://github.com/ceu-lang/ceu |
| **cfengine** | 1:3.24.0 | CFEngine is a configuration management technology | https://cfengine.com/ |
| **cfengine-static** | 1:3.24.0 | Static libraries for cfengine | https://cfengine.com/ |
| **cfm** | 1.2.0-3 | A basic file manager that runs inside a terminal, designed for Linux. It's fully responsive and incredibly fast. | https://github.com/0l1v3rr/cli-file-manager |
| **cgal** | 6.0.1 | Computational Geometry Algorithms Library | https://www.cgal.org/ |
| **cgdb** | 0.8.0 | A lightweight curses (terminal-based) interface to the GNU Debugger (GDB) | https://cgdb.github.io/ |
| **cgif** | 0.4.1 | A fast and lightweight GIF encoding library | https://github.com/dloebl/cgif |
| **chafa** | 1.14.5 | Image-to-text converter supporting a wide range of symbols, etc. | https://hpjansson.org/chafa/ |
| **chafa-static** | 1.14.5 | Static libraries for chafa | https://hpjansson.org/chafa/ |
| **check** | 0.15.2-2 | A unit testing framework for C | https://libcheck.github.io/check |
| **check-static** | 0.15.2-2 | Static libraries for check | https://libcheck.github.io/check |
| **chezmoi** | 2.54.0 | Manage your dotfiles across multiple machines | https://chezmoi.io |
| **chicken** | 5.4.0 | A feature rich Scheme compiler and interpreter | https://www.call-cc.org |
| **chicken-static** | 5.4.0 | Static libraries for chicken | https://www.call-cc.org |
| **choose** | 1.3.6 | A human-friendly and fast alternative to cut and (sometimes) awk | https://github.com/theryangeary/choose |
| **chromaprint** | 1.5.1-p20221217-1 | C library for generating audio fingerprints used by AcoustID | https://acoustid.org/chromaprint |
| **chrony** | 4.6.1 | chrony is an implementation of the Network Time Protocol (NTP) | https://chrony-project.org/ |
| **ciso** | 1.0.2-1 | PSP ISO compression tool | https://github.com/jamie/ciso |
| **ckermit** | 9.0.302-2 | A combined network and serial communication software package | https://www.kermitproject.org/ckermit.html |
| **clamav** | 1.4.1 | Anti-virus toolkit for Unix | https://www.clamav.net/ |
| **clamav-static** | 1.4.1 | Static libraries for clamav | https://www.clamav.net/ |
| **clang** | 19.1.3 | C language frontend for LLVM | https://clang.llvm.org/ |
| **clblast** | 1.6.3 | Tuned OpenCL BLAS | https://github.com/CNugteren/CLBlast |
| **cliaoke** | 0.2.4-4 | Command line karaoke | https://github.com/jessfraz/cliaoke |
| **clidle** | 2022.05.25-2 | Play Wordle over SSH | https://github.com/ajeetdsouza/clidle |
| **clifm** | 1.21 | The shell-like, command line terminal file manager: simple, fast, extensible, and lightweight as hell | https://github.com/leo-arch/clifm |
| **clinfo** | 3.0.23.01.25 | Print all known information about all available OpenCL platforms and devices in the system | https://github.com/Oblomov/clinfo |
| **clipp** | 1.2.3-1 | Command line interfaces for modern C++ | https://github.com/muellan/clipp |
| **cloneit** | 20240728 | A cli tool to download specific GitHub directories or files | https://github.com/alok8bb/cloneit |
| **cloudflared** | 2024.11.0 | A tunneling daemon that proxies traffic from the Cloudflare network to your origins | https://github.com/cloudflare/cloudflared |
| **clpeak** | 1.1.2-3 | A tool which profiles OpenCL devices to find their peak capacities | https://github.com/krrishnarraj/clpeak |
| **clvk** | 0.0.20241108.003400 | Experimental implementation of OpenCL on Vulkan | https://github.com/kpet/clvk |
| **cmake** | 3.31.0 | Family of tools designed to build, test and package software | https://cmake.org/ |
| **cmake-curses-gui** | 3.31.0 | Curses based user interface for CMake (ccmake) | https://cmake.org/ |
| **cmark** | 0.31.1 | CommonMark parsing and rendering program | https://github.com/commonmark/cmark |
| **cmark-static** | 0.31.1 | Static libraries for cmark | https://github.com/commonmark/cmark |
| **cmatrix** | 2.0 | Command producing a Matrix-style animation | https://github.com/abishekvashok/cmatrix |
| **cmocka** | 1.1.7 | cmocka is an unit testing framework for C | https://cmocka.org/ |
| **cmus** | 2.12.0-1 | Small, fast and powerful console music player | https://cmus.github.io/ |
| **cmusfm** | 0.5.0 | Last.fm standalone scrobbler for the cmus music player | https://github.com/Arkq/cmusfm |
| **codecrypt** | 1.8-9 | The post-quantum cryptography tool | http://e-x-a.org/codecrypt/ |
| **coinor-cbc** | 2.10.12 | An open-source mixed integer linear programming solver | https://github.com/coin-or/Cbc |
| **coinor-cbc-static** | 2.10.12 | Static libraries for coinor-cbc | https://github.com/coin-or/Cbc |
| **coinor-clp** | 1:1.17.10 | An open-source linear programming solver | https://github.com/coin-or/Clp |
| **coinor-clp-static** | 1:1.17.10 | Static libraries for coinor-clp | https://github.com/coin-or/Clp |
| **cointop** | 1.6.10-2 | A fast and lightweight interactive terminal based UI application for tracking cryptocurrencies | https://cointop.sh/ |
| **colm** | 0.14.7-1 | COmputer Language Machinery | https://www.colm.net/open-source/colm/ |
| **colm-static** | 0.14.7-1 | Static libraries for colm | https://www.colm.net/open-source/colm/ |
| **colordiff** | 1.0.21 | Tool to colorize 'diff' output | https://www.colordiff.org/ |
| **command-not-found** | 2.4.0-50 | Suggest installation of packages in interactive shell sessions | https://github.com/termux/command-not-found |
| **composer** | 2.8.2 | Dependency Manager for PHP | https://getcomposer.org/ |
| **console-bridge** | 1.0.2 | A ROS-independent package for logging that seamlessly pipes into rosconsole/rosout for ROS-dependent packages | https://github.com/ros/console_bridge |
| **convertlit** | 1.8-1 | An extractor/converter for .LIT eBooks | http://www.convertlit.com/ |
| **cookcli** | 0.8.0 | A suite of tools to create shopping lists and maintain food recipes | https://cooklang.org |
| **coreutils** | 9.5-3 | Basic file, shell and text manipulation utilities from the GNU project | https://www.gnu.org/software/coreutils/ |
| **corgi** | 0.2.4-4 | CLI workflow manager | https://github.com/DrakeW/corgi |
| **corkscrew** | 2.0-3 | A tool for tunneling SSH through HTTP proxies | https://wiki.linuxquestions.org/wiki/Corkscrew |
| **cowsay** | 3.8.3 | Program which generates ASCII pictures of a cow with a message | https://cowsay.diamonds/ |
| **cpio** | 2.15 | CPIO implementation from the GNU project | https://www.gnu.org/software/cpio/ |
| **cppcheck** | 2.16.0 | tool for static C/C++ code analysis | https://github.com/danmar/cppcheck |
| **cppi** | 1.18-1 | Indents C preprocessor directives to reflect their nesting, among other regularizations | https://www.gnu.org/software/cppi/ |
| **cpufetch** | 1.06 | Simple yet fancy CPU architecture fetching tool | https://github.com/Dr-Noob/cpufetch |
| **cpulimit** | 0.2-1 | CPU usage limiter | https://github.com/opsengine/cpulimit |
| **crawl** | 0.32.1 | Roguelike adventure through dungeons filled with dangerous monsters | https://crawl.develz.org/ |
| **croc** | 1:10.1.0 | Easily and securely send things from one computer to another | https://github.com/schollz/croc |
| **cronie** | 1.7.2-1 | Daemon that runs specified programs at scheduled times and related tools | https://github.com/cronie-crond/cronie/ |
| **crowbook** | 0.16.1-3 | Allows you to write a book in Markdown without worrying about formatting or typography | https://github.com/crowdagger/crowbook |
| **crunch** | 3.6-4 | Highly customizable wordlist generator | https://sourceforge.net/projects/crunch-wordlist |
| **crypto-monitor** | 2021.02.22-3 | Real-time crypto currency monitor | https://github.com/edghyhdz/crypto_monitor |
| **cryptopp** | 8.9.0 | A free C++ class library of cryptographic schemes | https://www.cryptopp.com/ |
| **cryptopp-static** | 8.9.0 | Static libraries for cryptopp | https://www.cryptopp.com/ |
| **cscope** | 15.9-1 | A developers tool for browsing program code | http://cscope.sourceforge.net/ |
| **csh** | 20110502-1 | C Shell with process control from 3BSD | https://packages.debian.org/sid/csh |
| **csol** | 1.6.0 | A small collection of solitaire games implemented in C using ncurses | https://github.com/nielssp/csol |
| **csview** | 1.3.3 | Pretty-printing CSV/TSV/xSV on terminal | https://github.com/wfxr/csview |
| **ctags** | 2:6.1.0 | Universal ctags: Source code index builder | https://ctags.io/ |
| **ctypes-sh** | 1.2-1 | A foreign function interface for bash | https://github.com/taviso/ctypes.sh |
| **cuetools** | 1.4.1 | A set of utilities for working with Cue Sheet (cue) and Table of Contents (toc) files | https://github.com/svend/cuetools |
| **cups** | 2.4.11 | Common UNIX Printing System | https://www.cups.org/ |
| **cups-pdf** | 3.0.1 | CUPS PDF backend | https://www.cups-pdf.de/ |
| **cups-static** | 2.4.11 | Static libraries for cups | https://www.cups.org/ |
| **curl** | 8.11.0-1 | Command line tool for transferring data with URL syntax | https://curl.se/ |
| **curlie** | 1.7.2 | The power of curl, the ease of use of httpie | https://curlie.io/ |
| **curseofwar** | 1.3.0-4 | Fast-paced action strategy game focusing on high-level strategic planning | http://a-nikolaev.github.io/curseofwar/ |
| **cvs** | 1:1.12.13-4 | Concurrent Versions System | https://www.nongnu.org/cvs/ |
| **d8** | 33.0.1 | DEX bytecode compiler from Android SDK | https://developer.android.com/studio/command-line/d8 |
| **daemonize** | 1.7.8-2 | Run a command as a Unix daemon | http://software.clapper.org/daemonize/ |
| **dar** | 2.7.15-1 | A full featured command-line backup tool, short for Disk ARchive | http://dar.linux.free.fr/ |
| **dar-static** | 2.7.15-1 | Static libraries for dar | http://dar.linux.free.fr/ |
| **darkhttpd** | 1.16 | A simple webserver, implemented in a single .c file. | https://unix4lyfe.org/darkhttpd |
| **dart** | 3.5.4 | Dart is a general-purpose programming language | https://dart.dev/ |
| **dasel** | 2.8.1 | Select, put and delete data from JSON, TOML, YAML, XML and CSV files with a single utility | https://github.com/TomWright/dasel |
| **dash** | 0.5.12 | Small POSIX-compliant implementation of /bin/sh | http://gondor.apana.org.au/~herbert/dash/ |
| **dasm** | 2.20.14.1 | Macro assembler with support for several 8-bit microprocessors | https://dasm-dillon.sourceforge.io/ |
| **datamash** | 1.8 | Program performing numeric, textual and statistical operations | https://www.gnu.org/software/datamash/ |
| **dateutils** | 0.4.11 | Command line date and time utilities | https://www.fresse.org/dateutils/ |
| **db** | 18.1.40-4 | The Berkeley DB embedded database system | https://www.oracle.com/database/berkeley-db |
| **dbus** | 1.15.6-3 | Freedesktop.org message bus system | https://dbus.freedesktop.org |
| **dbus-python** | 1.3.2-3 | Python bindings for D-Bus | https://dbus.freedesktop.org/doc/dbus-python/ |
| **dbus-static** | 1.15.6-3 | Static libraries for dbus | https://dbus.freedesktop.org |
| **dcmtk** | 3.6.7-4 | A collection of libraries and applications implementing large parts the DICOM standard | https://dicom.offis.de/dcmtk |
| **dcraw** | 9.28.0-6 | Raw digital camera images decoding utility | https://www.dechifro.org/dcraw/ |
| **ddrescue** | 1.28 | GNU data recovery tool | https://www.gnu.org/software/ddrescue/ |
| **debianutils** | 5.20 | Small utilities which are used primarily by the installation scripts of Debian packages | https://packages.debian.org/debianutils |
| **debootstrap** | 1.0.137 | Bootstrap a basic Debian system | https://wiki.debian.org/Debootstrap |
| **desed** | 1.2.2 | Demystifies and debugs your sed scripts | https://github.com/SoptikHa2/desed |
| **deutex** | 5.2.2 | WAD composer for Doom, Heretic, Hexen, and Strife | https://github.com/Doom-Utils/deutex/ |
| **dex2jar** | 2.4 | Tools to work with android .dex and java .class files | https://github.com/pxb1988/dex2jar |
| **dialog** | 1.3-20240307-0 | Application used in shell scripts which displays text user interface widgets | https://invisible-island.net/dialog/ |
| **dialog-static** | 1.3-20240307-0 | Static libraries for dialog | https://invisible-island.net/dialog/ |
| **dictd** | 1.13.1 | Online dictionary client and server | https://sourceforge.net/projects/dict/ |
| **diffstat** | 1.67 | Displays a histogram of changes to a file | https://invisible-island.net/diffstat/diffstat.html |
| **difftastic** | 0.61.0 | difft: A structural diff that understands syntax | https://github.com/Wilfred/difftastic |
| **diffutils** | 3.10 | Programs (cmp, diff, diff3 and sdiff) related to finding differences between files | https://www.gnu.org/software/diffutils/ |
| **dirb** | 2.22-4 | Web Directory Fuzzer | http://dirb.sourceforge.net/ |
| **direnv** | 2.35.0 | Environment switcher for shell | https://github.com/direnv/direnv |
| **direvent** | 5.4 | Monitor of events in file system directories | https://www.gnu.org.ua/software/direvent/ |
| **discordo** | 2022.08.12-3 | A lightweight, secure, and feature-rich Discord terminal client | https://github.com/ayntgl/discordo |
| **diskus** | 0.7.0 | A minimal, fast alternative to 'du -sh' | https://github.com/sharkdp/diskus |
| **distant** | 1:0.20.0 | Library and tooling that supports remote filesystem and process | https://github.com/chipsenkbeil/distant |
| **distcc** | 3.4-3 | Distributed C/C++ compiler | http://distcc.org/ |
| **djvulibre** | 3.5.28-6 | Suite to create, manipulate and view DjVu ('déjà vu') documents | https://djvu.sourceforge.net/ |
| **djvulibre-static** | 3.5.28-6 | Static libraries for djvulibre | https://djvu.sourceforge.net/ |
| **dmagnetic** | 0.37 | Interpreter for classic text adventure games and interactive fiction | https://dettus.net/dMagnetic |
| **dmtx-utils** | 0.7.6 | A command line interface for libdmtx | https://github.com/dmtx/dmtx-utils |
| **dnote** | 1:0.15.1 | A simple command line notebook for programmers | https://www.getdnote.com/ |
| **dnote-server** | 2.1.1-2 | This package contains the Dnote server. It comprises of the web interface, the web API, and the background jobs. | https://www.getdnote.com/ |
| **dns2tcp** | 0.5.2-1 | dns2tcp is a tool for relaying TCP connections over DNS | https://github.com/alex-sector/dns2tcp |
| **dnslookup** | 1.11.1 | Simple command line utility to make DNS lookups. Supports all known DNS protocols: plain DNS, DoH, DoT, DoQ, DNSCrypt. | https://github.com/ameshkov/dnslookup |
| **dnsmap** | 0.36-2 | Subdomain Bruteforcing Tool | https://github.com/resurrecting-open-source-projects/dnsmap |
| **dnstop** | 2022.10.19 | A libpcap application that displays various tables of DNS traffic on your network | https://github.com/measurement-factory/dnstop |
| **dnsutils** | 9.16.41 | Clients provided with BIND | https://www.isc.org/downloads/bind/ |
| **dnsutils-static** | 9.16.41 | Static libraries for dnsutils | https://www.isc.org/downloads/bind/ |
| **docbook-xml** | 4.5-4 | A widely used XML scheme for writing documentation and help | https://www.oasis-open.org/docbook/ |
| **docbook-xsl** | 1.79.2-1 | XML stylesheets for Docbook-xml transformations | https://docbook.org/ |
| **docopt** | 0.6.3-3 | Command line arguments parser for C++11 and later | http://docopt.org |
| **docopt-static** | 0.6.3-3 | Static libraries for docopt | http://docopt.org |
| **doctest** | 2.4.11-1 | The fastest feature-rich C++11/14/17/20 single-header testing framework | https://github.com/doctest/doctest |
| **dog** | 0.1.0-2 | A command-line DNS client. | https://dns.lookup.dog/ |
| **doge** | 0.2.7 | A command-line DNS client | https://github.com/Dj-Codeman/doge |
| **dopewars** | 1.6.2 | Drug-dealing game set in streets of New York City | https://dopewars.sourceforge.io |
| **dos2unix** | 7.5.2 | Converts between DOS and Unix text files | https://waterlan.home.xs4all.nl/dos2unix.html |
| **dosfstools** | 4.2 | DOS file system utilities | https://github.com/dosfstools/dosfstools |
| **dotconf** | 1.4.1 | dot.conf configuration file parser | https://github.com/williamh/dotconf |
| **dotconf-static** | 1.4.1 | Static libraries for dotconf | https://github.com/williamh/dotconf |
| **double-conversion** | 3.3.0 | Binary-decimal and decimal-binary routines for IEEE doubles | https://github.com/google/double-conversion |
| **doxygen** | 1.12.0 | A documentation system for C++, C, Java, IDL and PHP | http://www.doxygen.org |
| **dpkg** | 1.22.6-1 | Debian package management system | https://packages.debian.org/dpkg |
| **dpkg-perl** | 1.22.6-1 | Perl modules for dpkg | https://packages.debian.org/dpkg |
| **dpkg-scanpackages** | 1.22.6-1 | Creates Packages index files | https://packages.debian.org/dpkg |
| **dropbear** | 2024.86 | Small SSH server and client | https://matt.ucc.asn.au/dropbear/dropbear.html |
| **dtach** | 0.9 | Emulates the detach feature of screen | http://dtach.sourceforge.net/ |
| **dtc** | 1.7.2 | Device Tree Compiler | https://git.kernel.org/pub/scm/utils/dtc/dtc |
| **dtc-static** | 1.7.2 | Static libraries for dtc | https://git.kernel.org/pub/scm/utils/dtc/dtc |
| **dte** | 1.11.1-1 | A small, configurable console text editor | https://craigbarnes.gitlab.io/dte/ |
| **dua** | 2.29.4 | View disk space usage and delete unwanted data, fast | https://github.com/Byron/dua-cli |
| **duc** | 1.4.5 | High-performance disk usage analyzer | http://duc.zevv.nl/ |
| **duckdb** | 1.1.3 | DuckDB Command Line Interface (CLI) shell | https://duckdb.org/ |
| **duf** | 0.8.1-3 | Disk usage/free utility | https://github.com/muesli/duf |
| **dufs** | 0.43.0 | A file server that supports static serving, uploading, searching, accessing control, webdav... | https://github.com/sigoden/dufs |
| **duktape** | 2.7.0-1 | Simple REPL for Duktape | https://www.duktape.org/ |
| **dust** | 1.1.1 | A more intuitive version of du in rust | https://github.com/bootandy/dust |
| **dvdauthor** | 0.7.2-2 | Generates a DVD-Video movie from a valid MPEG-2 stream | https://dvdauthor.sourceforge.net/ |
| **dvtm** | 0.15-3 | Terminal tiling window manager | https://github.com/martanne/dvtm |
| **dwarves** | 1.27 | Pahole and other DWARF utils | https://git.kernel.org/cgit/devel/pahole/pahole.git/ |
| **dx** | 1:1.16-7 | Command which takes in Java class files and converts them to format executable by Dalvik VM | http://developer.android.com/tools/help/index.html |
| **e2fsprogs** | 1.47.1 | EXT 2/3/4 filesystem utilities | https://e2fsprogs.sourceforge.net |
| **e2tools** | 0.1.2 | mtools analogue for ext2/3 filesystems | https://github.com/e2tools/e2tools |
| **ebook-tools** | 0.2.2-1 | Tools for accessing and converting various ebook file formats | https://sourceforge.net/projects/ebook-tools/ |
| **ecj** | 1:4.12-5 | Eclipse Compiler for Java | https://www.eclipse.org/jdt/core/ |
| **ed** | 1.20.2 | Classic UNIX line editor | https://www.gnu.org/software/ed/ |
| **edbrowse** | 3.8.10 | Line based editor, browser, and mail client | https://edbrowse.org/ |
| **editorconfig-core-c** | 0.12.9 | EditorConfig core code written in C (for use by plugins supporting EditorConfig parsing) | https://editorconfig.org/ |
| **editorconfig-core-c-static** | 0.12.9 | Static libraries for editorconfig-core-c | https://editorconfig.org/ |
| **eigen** | 3.4.0 | Eigen is a C++ template library for linear algebra: matrices, vectors, numerical solvers, and related algorithms | http://eigen.tuxfamily.org |
| **eja** | 13.11.25-1 | eja micro web server | https://github.com/eja/eja |
| **electric-fence** | 2.2.7 | Electric Fence (eFence) malloc memory debugger | https://elinux.org/Electric_Fence |
| **electric-fence-static** | 2.2.7 | Static libraries for electric-fence | https://elinux.org/Electric_Fence |
| **electrum** | 4.5.8 | Electrum is a lightweight Bitcoin wallet | https://electrum.org |
| **elfutils** | 0.191 | A collection of utilities to read, create and modify ELF binary files | https://sourceware.org/elfutils/ |
| **elinks** | 0.17.1.1 | Full-Featured Text WWW Browser | https://github.com/rkd77/elinks |
| **elixir** | 1.17.3 | Elixir is a dynamic, functional language designed for building scalable and maintainable applications | https://elixir-lang.org/ |
| **eltclsh** | 1.19-2 | Interactive shell for TCL programming language | https://homepages.laas.fr/mallet/soft/shell/eltclsh |
| **elvish** | 0.21.0 | A friendly and expressive Unix shell | https://github.com/elves/elvish |
| **emacs** | 29.4-2 | Extensible, customizable text editor-and more | https://www.gnu.org/software/emacs/ |
| **emscripten** | 3.1.71 | Emscripten: An LLVM-to-WebAssembly Compiler | https://emscripten.org |
| **emscripten-binaryen** | 3.1.71 | Emscripten-compatible Binaryen | https://emscripten.org |
| **emscripten-llvm** | 3.1.71 | Emscripten-compatible LLVM | https://emscripten.org |
| **emscripten-tests-third-party** | 3.1.71 | Emscripten third party test suite files | https://emscripten.org |
| **enblend** | 4.2.0p20161007-4 | A tool for compositing images using a Burt&Adelson multiresolution spline | https://enblend.sourceforge.net/ |
| **enchant** | 2.8.2 | Wraps a number of different spelling libraries and programs with a consistent interface | https://abiword.github.io/enchant/ |
| **enchant-static** | 2.8.2 | Static libraries for enchant | https://abiword.github.io/enchant/ |
| **enscript** | 1.6.6-12 | Enscript converts ASCII text files to PostScript, HTML, RTF, ANSI and overstrikes | https://www.gnu.org/software/enscript/ |
| **entr** | 5.6 | Event Notify Test Runner - run arbitrary commands when files change | http://eradman.com/entrproject/ |
| **erlang** | 27.1.2 | General-purpose concurrent functional programming language | https://www.erlang.org/ |
| **esbuild** | 0.24.0 | An extremely fast JavaScript bundler | https://esbuild.github.io/ |
| **espeak** | 1.51-2 | Compact software speech synthesizer | https://github.com/espeak-ng/espeak-ng |
| **espeak-static** | 1.51-2 | Static libraries for espeak | https://github.com/espeak-ng/espeak-ng |
| **et** | 6.2.9-2 | A remote shell that automatically reconnects without interrupting the session | https://eternalterminal.dev |
| **etsh** | 5.4.0 | An enhanced, backward-compatible port of Thompson Shell | https://etsh.nl |
| **exercism** | 3.5.2 | A Go based command line tool for exercism.io | https://github.com/exercism/cli/ |
| **exhale** | 1.2.1 | Open source xHE-AAC encoder | https://gitlab.com/ecodis/exhale |
| **exiftool** | 13.03 | Utility for reading, writing and editing meta information in a wide variety of files. | https://exiftool.org/ |
| **exiv2** | 2:0.28.3 | Exif, Iptc and XMP metadata manipulation library and tools | https://exiv2.org/ |
| **exiv2-static** | 2:0.27.7-1 | Static libraries for exiv2 | https://exiv2.org/ |
| **expect** | 5.45.4-3 | Tool for automating interactive terminal applications | https://core.tcl.tk/expect/index |
| **eza** | 0.20.8 | A modern replacement for ls | https://github.com/eza-community/eza |
| **fact++** | 1.6.5-1 | Re-implementation of the well-known FaCT Description Logic (DL) Reasoner | https://bitbucket.org/dtsarkov/factplusplus |
| **fakeroot** | 1.36 | Tool for simulating superuser privileges (with tcp ipc) | https://packages.qa.debian.org/f/fakeroot.html |
| **fakeroot-static** | 1.36 | Static libraries for fakeroot | https://packages.qa.debian.org/f/fakeroot.html |
| **fasd** | 1.0.2 | To fastly access files and folders | https://github.com/whjvenyl/fasd |
| **fastfetch** | 2.29.0 | A neofetch-like tool for fetching system information and displaying them in a pretty way | https://github.com/fastfetch-cli/fastfetch |
| **fastmod** | 0.4.4 | Regex-based code refactoring utility | https://github.com/facebookincubator/fastmod |
| **fatsort** | 1.6.5.640 | A C utility that sorts FAT12, FAT16, FAT32 and exFAT partitions | https://fatsort.sourceforge.io/ |
| **faust** | 2.75.7 | A functional programming language for signal processing and sound synthesis | https://github.com/grame-cncm/faust |
| **faust-static** | 2.75.7 | Static libraries for faust | https://github.com/grame-cncm/faust |
| **faustlibraries** | 2.75.7 | Faust DSP libraries | https://github.com/grame-cncm/faust |
| **fclones** | 0.34.0 | Efficient Duplicate File Finder | https://github.com/pkolaczk/fclones |
| **fcp** | 0.2.1-1 | A significantly faster alternative to the classic Unix cp(1) command | https://github.com/Svetlitski/fcp |
| **fd** | 10.2.0 | Simple, fast and user-friendly alternative to find | https://github.com/sharkdp/fd |
| **fdisk** | 2.40.2-2 | Utilities to manipulate disk partition tables | https://en.wikipedia.org/wiki/Util-linux |
| **fdkaac** | 1.0.6 | command line encoder frontend for libfdk-aac | https://github.com/nu774/fdkaac |
| **fdm** | 2.2 | A program designed to fetch mail from POP3 or IMAP servers, or receive local mail from stdin, and deliver it in various ways | https://github.com/nicm/fdm |
| **fdroidcl** | 0.7.0-2 | F-Droid client | https://github.com/mvdan/fdroidcl |
| **fdupes** | 2.3.2 | Duplicates file detector | https://github.com/adrianlopezroche/fdupes |
| **fennel** | 1.5.1 | A Lisp that compiles to Lua | https://fennel-lang.org |
| **feroxbuster** | 2.11.0 | A fast, simple, recursive content discovery tool written in Rust | https://github.com/epi052/feroxbuster |
| **fetchmail** | 6.5.1 | A remote-mail retrieval utility | https://www.fetchmail.info/ |
| **fetchmailconf** | 6.5.1 | A GUI configurator for generating fetchmail configuration files | https://www.fetchmail.info/ |
| **fff** | 2.2 | A simple file manager written in bash | https://github.com/dylanaraps/fff |
| **ffmpeg** | 6.1.2 | Tools and libraries to manipulate a wide range of multimedia formats and protocols | https://ffmpeg.org |
| **ffmpegthumbnailer** | 2.2.3-p20240913-0 | Lightweight video thumbnailer that can be used by file managers | https://github.com/dirkvdb/ffmpegthumbnailer |
| **ffsend** | 0.2.76 | A fully featured Firefox Send client | https://gitlab.com/timvisee/ffsend |
| **fftw** | 3.3.10-3 | Library for computing the Discrete Fourier Transform (DFT) in one or more dimensions | http://www.fftw.org/ |
| **fftw-static** | 3.3.10-3 | Static libraries for fftw | http://www.fftw.org/ |
| **figlet** | 2.2.5-2 | Program for making large letters out of ordinary text | http://www.figlet.org/ |
| **file** | 5.45 | Command-line tool that tells you in words what kind of data a file contains | https://darwinsys.com/file/ |
| **file-static** | 5.45 | Static libraries for file | https://darwinsys.com/file/ |
| **finch** | 2.14.13-2 | Text-based multi-protocol instant messaging client | https://pidgin.im/ |
| **finch-static** | 2.14.13-2 | Static libraries for finch | https://pidgin.im/ |
| **findomain** | 9.0.4 | Findomain is the fastest subdomain enumerator and the only one written in Rust | https://findomain.app/ |
| **findutils** | 4.10.0 | Utilities to find files meeting specified criteria and perform various actions on the files which are found | https://www.gnu.org/software/findutils/ |
| **fish** | 3.7.1-1 | The user-friendly command line shell | https://fishshell.com/ |
| **flac** | 1.4.3 | FLAC (Free Lossless Audio Codec) command-line tool | https://xiph.org/flac/ |
| **flatbuffers** | 24.3.25 | Memory Efficient Serialization Library | https://github.com/google/flatbuffers |
| **flatbuffers-static** | 24.3.25 | Static libraries for flatbuffers | https://github.com/google/flatbuffers |
| **flex** | 2.6.4-3 | Fast lexical analyser generator | https://github.com/westes/flex |
| **flex-static** | 2.6.4-3 | Static libraries for flex | https://github.com/westes/flex |
| **fluidsynth** | 2.4.0 | Software synthesizer based on the SoundFont 2 specifications | https://github.com/FluidSynth/fluidsynth |
| **fm** | 1.1.0 | A terminal based file manager | https://github.com/knipferrc/fm |
| **fmt** | 1:11.0.2 | Open-source formatting library for C++ | https://fmt.dev/latest/index.html |
| **fontconfig** | 2.15.0 | Library for configuring and customizing font access | https://www.freedesktop.org/wiki/Software/fontconfig/ |
| **fontconfig-static** | 2.15.0 | Static libraries for fontconfig | https://www.freedesktop.org/wiki/Software/fontconfig/ |
| **fontconfig-utils** | 2.15.0 | Fontconfig binaries | https://www.freedesktop.org/wiki/Software/fontconfig/ |
| **forestdb-dump** | 1.2 | ForestDB dump tool | https://github.com/couchbase/forestdb |
| **forgejo** | 9.0.1 | Forgejo is a self-hosted lightweight software forge. | https://forgejo.org/ |
| **fortune** | 1.2-1 | Revealer of fortunes | https://www.fefe.de/fortune/ |
| **fossil** | 2.25-1 | DSCM with built-in wiki, http interface and server, tickets database | https://www.fossil-scm.org |
| **freecolor** | 0.9.3 | Freecolor is a replacement for Linux that displays free memory graphically | http://rkeene.org/oss/freecolor/ |
| **freeimage** | 3.18.0-6 | The library project for developers who would like to support popular graphics image formats | https://freeimage.sourceforge.io |
| **freeimage-static** | 3.18.0-6 | Static libraries for freeimage | https://freeimage.sourceforge.io |
| **freetype** | 2.13.3 | Software font engine capable of producing high-quality output | https://www.freetype.org |
| **freetype-static** | 2.13.3 | Static libraries for freetype | https://www.freetype.org |
| **frei0r-plugins** | 2.3.3 | Minimalistic plugin API for video effects | https://www.dyne.org/software/frei0r/ |
| **fribidi** | 1.0.16 | Implementation of the Unicode Bidirectional Algorithm | https://github.com/fribidi/fribidi/ |
| **fribidi-static** | 1.0.16 | Static libraries for fribidi | https://github.com/fribidi/fribidi/ |
| **frobtads** | 2.0-3 | TADS is a free authoring system for writing your own Interactive Fiction | http://www.tads.org/frobtads.htm |
| **frogcomposband** | 7.1.salmiak-1 | Open world Angband variant with many additions | https://github.com/sulkasormi/frogcomposband/ |
| **frotz** | 2.54-1 | Interpreter for Infocom and other Z-machine interactive fiction (IF) games | https://gitlab.com/DavidGriffith/frotz |
| **frp** | 0.61.0 | A fast reverse proxy to expose a local server behind a NAT or firewall to the internet | https://github.com/fatedier/frp |
| **fselect** | 0.8.6 | Find files with SQL-like queries | https://fselect.rocks/ |
| **fsmon** | 1.8.6 | Filesystem monitor with fanotify and inotify backends | https://github.com/nowsecure/fsmon |
| **fwknop** | 2.6.11 | fwknop: Single Packet Authorization > Port Knocking | https://www.cipherdyne.org/fwknop/ |
| **fwknop-static** | 2.6.11 | Static libraries for fwknop | https://www.cipherdyne.org/fwknop/ |
| **fx** | 35.0.0 | Interactive JSON viewer on your terminal | https://github.com/antonmedv/fx |
| **fzf** | 0.56.2 | Command-line fuzzy finder | https://junegunn.github.io/fzf/ |
| **fzy** | 1.0 | A simple, fast fuzzy finder for the terminal | https://github.com/jhawthorn/fzy |
| **g-ir-scanner** | 1.82.0-1 | A tool which generates GIR XML files | https://gi.readthedocs.io/ |
| **game-music-emu** | 0.6.3-1 | A collection of video game music file emulators | https://bitbucket.org/mpyne/game-music-emu/wiki/Home |
| **gap** | 4.13.1 | GAP is a system for computational discrete algebra, with particular emphasis on Computational Group Theory | https://www.gap-system.org/ |
| **gap-packages** | 4.13.1 | Packages for gap | https://www.gap-system.org/ |
| **gap-static** | 4.12.2 | Static libraries for gap | https://www.gap-system.org/ |
| **gatling** | 0.16-1 | A high performance http, ftp and smb server | https://www.fefe.de/gatling/ |
| **gauche** | 0.9.12-5 | An R7RS Scheme implementation developed to be a handy script interpreter | https://practical-scheme.net/gauche/ |
| **gauche-static** | 0.9.12-5 | Static libraries for gauche | https://practical-scheme.net/gauche/ |
| **gawk** | 5.3.0 | Programming language designed for text processing | https://www.gnu.org/software/gawk/ |
| **gawk-static** | 5.3.0 | Static libraries for gawk | https://www.gnu.org/software/gawk/ |
| **gbt** | 2.0.0-6 | Highly configurable prompt builder for Bash and ZSH written in Go | https://github.com/jtyr/gbt |
| **gcal** | 4.1-3 | Program for calculating and printing calendars | https://www.gnu.org/software/gcal/ |
| **gdal** | 3.10.0 | A translator library for raster and vector geospatial data formats | https://gdal.org |
| **gdal-static** | 3.5.3 | Static libraries for gdal | https://gdal.org |
| **gdb** | 15.2 | The standard GNU Debugger that runs on many Unix-like systems and works for many programming languages | https://www.gnu.org/software/gdb/ |
| **gdbm** | 1.24 | Library of database functions that use extensible hashing | https://www.gnu.org.ua/software/gdbm/ |
| **gdbm-static** | 1.24 | Static libraries for gdbm | https://www.gnu.org.ua/software/gdbm/ |
| **gdbserver** | 15.2 | The gdbserver program | https://www.gnu.org/software/gdb/ |
| **gdk-pixbuf** | 2.42.12 | Library for image loading and manipulation | https://wiki.gnome.org/Projects/GdkPixbuf |
| **gdrive-downloader** | 1:1.1 | Download a gdrive folder or file easily, shell ftw | https://github.com/Akianonymus/gdrive-downloader |
| **gdu** | 5.29.0 | Fast disk usage analyzer with console interface written in Go | https://github.com/dundee/gdu |
| **geckodriver** | 0.35.0 | Proxy for using W3C WebDriver-compatible clients to interact with Gecko-based browsers | https://github.com/mozilla/geckodriver |
| **gecode** | 6.2.0 | Generic Constraint Development Environment | https://github.com/Gecode/gecode |
| **gecode-static** | 6.2.0 | Static libraries for gecode | https://github.com/Gecode/gecode |
| **gegl** | 0.4.50 | Data flow based image processing framework | https://gegl.org/ |
| **gengetopt** | 2.23-3 | gengetopt is a tool to write command line option parsing code for C programs | https://www.gnu.org/software/gengetopt/ |
| **geographiclib** | 2.4 | Utilities and C++ library to solve some geodesic problems | https://geographiclib.sourceforge.io |
| **geoip2-database** | 20191221-2 | GeoLite2 IP geolocation databases compiled by MaxMind | https://dev.maxmind.com/geoip/geoip2/geolite2/ |
| **germanium** | 1.2.3-3 | Generate image from source code | https://github.com/matsuyoshi30/germanium |
| **getconf** | 0.6 | Utility to print configuration values | https://github.com/termux/getconf |
| **geth** | 1.14.11 | Go implementation of the Ethereum protocol | https://geth.ethereum.org/ |
| **geth-utils** | 1.14.11 | Additional utilities for Geth (like abigen, bootnode, evm, puppeth) | https://geth.ethereum.org/ |
| **gettext** | 0.22.5 | GNU Internationalization utilities | https://www.gnu.org/software/gettext/ |
| **gettext-static** | 0.22.5 | Static libraries for gettext | https://www.gnu.org/software/gettext/ |
| **gexiv2** | 0.14.3-1 | A GObject-based Exiv2 wrapper | https://wiki.gnome.org/Projects/gexiv2 |
| **gflags** | 2.2.2-9 | A C++ library that implements commandline flags processing | https://github.com/gflags/gflags |
| **gflags-static** | 2.2.2-9 | Static libraries for gflags | https://github.com/gflags/gflags |
| **gforth** | 0.7.3-1 | The Forth implementation of the GNU project | https://www.gnu.org/software/gforth/ |
| **gh** | 2.62.0 | GitHub’s official command line tool | https://cli.github.com/ |
| **ghc** | 9.2.5-1 | The Glasgow Haskell Compiler | https://www.haskell.org/ghc/ |
| **ghc-libs** | 9.2.5-1 | The Glasgow Haskell Compiler libraries | https://www.haskell.org/ghc/ |
| **ghc-libs-static** | 8.10.7-3 | Static libraries for ghc-libs | https://www.haskell.org/ghc/ |
| **ghostscript** | 10.03.1-1 | Interpreter for the PostScript language and for PDF | https://www.ghostscript.com/ |
| **giflib** | 5.2.2 | A library for reading and writing gif images | https://giflib.sourceforge.net/ |
| **giflib-static** | 5.2.2 | Static libraries for giflib | https://giflib.sourceforge.net/ |
| **giflib-utils** | 5.2.2 | A set of utilities that comes with giflib package | https://giflib.sourceforge.net/ |
| **gifsicle** | 1.95 | Tool for creating, editing, and getting information about GIF images and animations | https://www.lcdf.org/gifsicle/ |
| **gifski** | 1.32.0 | GIF encoder based on libimagequant | https://gif.ski/ |
| **git** | 2.47.0 | Fast, scalable, distributed revision control system | https://git-scm.com/ |
| **git-crypt** | 0.7.0-2 | Enables transparent encryption and decryption of files for a git repository | https://www.agwa.name/projects/git-crypt/ |
| **git-delta** | 0.18.2 | A syntax-highlighter for git and diff output | https://dandavison.github.io/delta/ |
| **git-gitk** | 2.47.0 | Git repository browser | https://git-scm.com/ |
| **git-gui** | 2.47.0 | A graphical interface to Git | https://git-scm.com/ |
| **git-lfs** | 3.5.1-1 | Git extension for versioning large files | https://git-lfs.github.com/ |
| **git-sizer** | 1.5.0-4 | Compute various size metrics for a Git repository | https://github.com/github/git-sizer |
| **git-svn** | 2.47.0 | Convert between Git and Subversion repositories | https://git-scm.com/ |
| **gitea** | 1.22.3 | Git with a cup of tea, painless self-hosted git service | https://gitea.io |
| **gitflow-avh** | 1.12.3-9 | Extend git with Vincent Driessen's branching model. The AVH Edition adds more functionality. | https://github.com/petervanderdoes/gitflow/ |
| **gitoxide** | 0.38.0 | Rust implementation of Git | https://github.com/Byron/gitoxide |
| **gitui** | 0.26.3 | Blazing fast terminal-ui for git written in rust | https://github.com/extrawurst/gitui |
| **gkermit** | 2.01 | Simple, Portable, Free File Transfer Software for UNIX | http://www.columbia.edu/kermit/gkermit.html |
| **glab-cli** | 1.48.0 | A GitLab CLI tool bringing GitLab to your command line | https://gitlab.com/gitlab-org/cli |
| **gleam** | 1.5.1 | A friendly language for building type-safe, scalable systems! | https://gleam.run |
| **glib** | 2.82.2 | Library providing core building blocks for libraries and applications written in C | https://developer.gnome.org/glib/ |
| **glib-bin** | 2.82.2 | Programs for the GLib library | https://developer.gnome.org/glib/ |
| **glib-cross** | 2.82.2 | glib for host (NOT for Termux) | https://developer.gnome.org/glib/ |
| **glib-networking** | 2.80.0 | Network-related giomodules for glib | https://gitlab.gnome.org/GNOME/glib-networking |
| **glibc-repo** | 1.0 | A package repository containing glibc-based programs and libraries | https://github.com/termux/glibc-packages |
| **glm** | 0.9.9.8 | C++ mathematics library for graphics software based on the GLSL specifications | https://glm.g-truc.net/ |
| **global** | 6.6.13 | Source code search and browse tools | https://www.gnu.org/software/global/ |
| **global-static** | 6.6.12 | Static libraries for global | https://www.gnu.org/software/global/ |
| **glow** | 2.0.0 | Render markdown on the CLI, with pizzazz! | https://github.com/charmbracelet/glow |
| **glpk** | 5.0-1 | GNU Linear Programming Kit: solve LP, MIP and other problems | https://www.gnu.org/software/glpk/ |
| **glpk-static** | 5.0-1 | Static libraries for glpk | https://www.gnu.org/software/glpk/ |
| **glslang** | 15.0.0 | OpenGL and OpenGL ES shader front end and validator | https://github.com/KhronosGroup/glslang |
| **gluelang** | 0.2.0-1 | A programming language that has a strong nature to be a glue of commands | https://ryuichiueda.github.io/GlueLang/ |
| **glulxe** | 0.5.4-5 | Interpreter for the Glulx portable VM for interactive fiction (IF) games | https://www.eblong.com/zarf/glulx/ |
| **gmic** | 3.4.3 | Full-featured framework for image processing | https://gmic.eu |
| **gmic-gm** | 3.4.3 | Full-featured framework for image processing (GraphicsMagick variant) | https://gmic.eu |
| **gn** | 20220502-1 | Meta-build system that generates build files for Ninja | https://gn.googlesource.com/gn |
| **gnucap** | 20210107-3 | The Gnu Circuit Analysis Package | https://www.gnu.org/software/gnucap/gnucap.html |
| **gnuchess** | 6.2.9-3 | Chess-playing program | https://www.gnu.org/software/chess/ |
| **gnucobol** | 3.1.2-3 | A free/libre COBOL compiler | https://gnucobol.sourceforge.io/ |
| **gnucobol-static** | 3.1.2-3 | Static libraries for gnucobol | https://gnucobol.sourceforge.io/ |
| **gnugo** | 3.8-5 | Program that plays the game of Go | https://www.gnu.org/software/gnugo/ |
| **gnuit** | 4.9.5 | gnuit - GNU Interactive Tools | https://www.gnu.org/software/gnuit/ |
| **gnunet** | 0.19.4-2 | A framework for secure peer-to-peer networking | https://gnunet.org |
| **gnunet-static** | 0.19.4-2 | Static libraries for gnunet | https://gnunet.org |
| **gnupg** | 2.4.5-3 | Implementation of the OpenPGP standard for encrypting and signing data and communication | https://www.gnupg.org/ |
| **gnuplot** | 6.0.1 | Command-line driven graphing utility | http://gnuplot.info/ |
| **gnurl** | 7.72.0 | Fork of libcurl, which is mostly for GNUnet | https://gnunet.org/en/gnurl.html |
| **gnurl-static** | 7.72.0 | Static libraries for gnurl | https://gnunet.org/en/gnurl.html |
| **gnushogi** | 1.4.2-4 | Program that plays the game of Shogi, also known as Japanese Chess | https://www.gnu.org/software/gnushogi/ |
| **gnuski** | 0.3-6 | Open source clone of Skifree, the old Windows game | https://sourceforge.net/projects/gnuski |
| **gnustep-make** | 2.9.2 | The GNUstep makefile package | http://www.gnustep.org |
| **gnutls** | 3.8.5 | Commandline utilities for interfacing with the gnutls library | https://www.gnutls.org/ |
| **go-findimagedupes** | 2023.01.29-3 | Find visually similar or duplicate images | https://gitlab.com/opennota/findimagedupes |
| **go-musicfox** | 4.5.7 | A netease music player in terminal. | https://github.com/go-musicfox/go-musicfox |
| **goaccess** | 1.9.3 | An open source real-time web log analyzer and interactive viewer | http://goaccess.io |
| **gobang** | 0.1.0-alpha.5-2 | A cross-platform TUI database management tool written in Rust | https://github.com/TaKO8Ki/gobang |
| **gobject-introspection** | 1.82.0-1 | Uniform machine readable API | https://gi.readthedocs.io/ |
| **gogs** | 0.13.0-2 | A painless self-hosted Git service | https://gogs.io |
| **gojq** | 0.12.16 | Pure Go implementation of jq | https://github.com/itchyny/gojq |
| **golang** | 3:1.23.2 | Go programming language compiler | https://golang.org/ |
| **golang-doc** | 3:1.23.2 | Go programming language - documentation | https://golang.org/ |
| **gomp** | 2023.02.02-2 | MPD client inspired by ncmpcpp with builtin cover-art view and LastFM integration | https://aditya-k2.github.io/gomp/ |
| **gomuks** | 0.3.1 | A terminal Matrix client written in Go | https://maunium.net/go/gomuks/ |
| **google-drive-upload** | 4.5 | Bash scripts to upload files to google drive | https://github.com/labbots/google-drive-upload |
| **google-glog** | 0.7.1 | Logging library for C++ | https://github.com/google/glog |
| **googletest** | 1.15.2 | Google C++ testing framework | https://github.com/google/googletest |
| **goose** | 3.22.1 | A database migration tool. Supports SQL migrations and Go functions. | https://pressly.github.io/goose |
| **gopass** | 1.15.14 | The slightly more awesome standard unix password manager for teams | https://github.com/gopasspw/gopass |
| **gopher** | 3.0.17.3-1 | University of Minnesota gopher | gopher://gopher.quux.org/1/devel/gopher |
| **gopls** | 0.16.2 | The official Go language server | https://github.com/golang/tools |
| **gotop** | 4.2.0-3 | A terminal based graphical activity monitor inspired by gtop and vtop | https://github.com/xxxserxxx/gotop |
| **gotty** | 1.5.0-3 | Share your terminal as a web application | https://github.com/sorenisanerd/gotty |
| **gpac** | 2.4.0 | An open-source multimedia framework focused on modularity and standards compliance | https://gpac.wp.imt.fr/ |
| **gpac-static** | 2.4.0 | Static libraries for gpac | https://gpac.wp.imt.fr/ |
| **gperf** | 3.1-7 | A perfect hash function generator | https://www.gnu.org/software/gperf |
| **gpgme** | 1.24.0 | Library designed to make access to GnuPG easier | https://www.gnupg.org/related_software/gpgme/ |
| **gpgme-static** | 1.24.0 | Static libraries for gpgme | https://www.gnupg.org/related_software/gpgme/ |
| **gpgmepp** | 1.24.0 | Programmatic C++ library interface to GnuPG | https://www.gnupg.org/related_software/gpgme/ |
| **gpgmepp-static** | 1.24.0 | Static libraries for gpgmepp | https://www.gnupg.org/related_software/gpgme/ |
| **gpgv** | 2.4.5-3 | GNU privacy guard - signature verification tool | https://www.gnupg.org/ |
| **gping** | 1.17.3 | Ping, but with a graph | https://github.com/orf/gping |
| **gpsbabel** | 1.4.4-2 | GPS file conversion plus transfer to/from GPS units | https://www.gpsbabel.org/ |
| **gradle** | 1:8.11 | Powerful build system for the JVM | https://gradle.org/ |
| **grafana** | 1:11.3.0-1 | The open-source platform for monitoring and observability | https://grafana.com/ |
| **graphene** | 1.10.8-1 | A thin layer of graphic data types | https://ebassi.github.io/graphene/ |
| **graphicsmagick** | 1.3.45-2 | Collection of image processing tools | http://www.graphicsmagick.org/ |
| **graphicsmagick-static** | 1.3.45-2 | Static libraries for graphicsmagick | http://www.graphicsmagick.org/ |
| **graphviz** | 12.2.0-1 | Rich set of graph drawing tools | https://www.graphviz.org/ |
| **graphviz-static** | 12.2.0-1 | Static libraries for graphviz | https://www.graphviz.org/ |
| **greed** | 4.3 | Game where you try to eat as much as possible of the board before munching yourself into a corner | http://www.catb.org/~esr/greed/ |
| **grep** | 3.11 | Command which searches one or more input files for lines containing a match to a specified pattern | https://www.gnu.org/software/grep/ |
| **grex** | 1.4.5 | Simplifies the task of creating regular expressions | https://github.com/pemistahl/grex |
| **groff** | 1.23.0 | typesetting system that reads plain text mixed with formatting commands and produces formatted output | https://www.gnu.org/software/groff/ |
| **gron** | 0.7.1-3 | Transforms JSON into discrete assignments | https://github.com/tomnomnom/gron |
| **groonga** | 14.1.0 | An embeddable fulltext search engine | https://github.com/groonga/groonga/ |
| **groovy** | 4.0.16-3 | A powerful multi-faceted programming language for the JVM platform | https://groovy-lang.org/ |
| **gsasl** | 2.2.1 | GNU SASL library command line interface | https://www.gnu.org/software/gsasl |
| **gsf-tools** | 1.14.53 | Command-line tools for libgsf | https://gitlab.gnome.org/GNOME/libgsf |
| **gsl** | 2.8 | GNU Scientific Library (GSL) providing a wide range of mathematical routines | https://www.gnu.org/software/gsl/ |
| **gsl-static** | 2.8 | Static libraries for gsl | https://www.gnu.org/software/gsl/ |
| **gst-libav** | 1.24.9 | GStreamer Libav plug-in contains one plugin with a set of elements using the Libav library code | https://gstreamer.freedesktop.org/modules/gst-libav.html |
| **gst-plugins-bad** | 1.24.9 | GStreamer Bad Plug-ins | https://gstreamer.freedesktop.org/ |
| **gst-plugins-base** | 1.24.9 | GStreamer base plug-ins | https://gstreamer.freedesktop.org/ |
| **gst-plugins-gl-headers** | 1.24.9 | OpenGL headers for GStreamer plugins | https://gstreamer.freedesktop.org/ |
| **gst-plugins-good** | 1.24.9 | GStreamer Good Plug-ins | https://gstreamer.freedesktop.org/ |
| **gst-plugins-ugly** | 1.24.9 | GStreamer Ugly Plug-ins | https://gstreamer.freedesktop.org/ |
| **gst-python** | 1.24.9 | Python bindings for GStreamer | https://gstreamer.freedesktop.org/ |
| **gstreamer** | 1.24.9 | Open source multimedia framework | https://gstreamer.freedesktop.org/ |
| **gtypist** | 2.9.5-2 | Universal typing tutor | https://www.gnu.org/software/gtypist/ |
| **guile** | 3.0.9-2 | Portable, embeddable Scheme implementation written in C | http://www.gnu.org/software/guile/ |
| **guile-static** | 3.0.9-2 | Static libraries for guile | http://www.gnu.org/software/guile/ |
| **guile18** | 1.8.8-16 | Portable, embeddable Scheme implementation written in C. (legacy branch) | http://www.gnu.org/software/guile/ |
| **guile18-static** | 1.8.8-16 | Static libraries for guile18 | http://www.gnu.org/software/guile/ |
| **gum** | 0.14.5 | A tool for creating minimal interactive TUIs for shell scripts | https://github.com/charmbracelet/gum |
| **gumbo-parser** | 0.10.1 | An HTML5 parsing library | https://github.com/google/gumbo-parser |
| **gumbo-parser-static** | 0.10.1 | Static libraries for gumbo-parser | https://github.com/google/gumbo-parser |
| **gzip** | 1.13 | Standard GNU file compression utilities | https://www.gnu.org/software/gzip/ |
| **haproxy** | 3.0.6 | The Reliable, High Performance TCP/HTTP Load Balancer | https://www.haproxy.org/ |
| **harfbuzz** | 10.1.0 | OpenType text shaping engine | https://www.freedesktop.org/wiki/Software/HarfBuzz/ |
| **harfbuzz-icu** | 10.1.0 | OpenType text shaping engine ICU backend | https://www.freedesktop.org/wiki/Software/HarfBuzz/ |
| **harfbuzz-utils** | 10.1.0 | Tools using the harfbuzz library | https://www.freedesktop.org/wiki/Software/HarfBuzz/ |
| **has** | 1.5.0-1 | has checks presence of various command line tools and their versions on the path | https://github.com/kdabir/has |
| **hash-slinger** | 3.3-1 | Various tools to generate special DNS records | https://github.com/letoams/hash-slinger |
| **hashdeep** | 4.4-8 | Programs to compute hashsums of arbitrary number of files recursively | http://md5deep.sourceforge.net/ |
| **hcl** | 2.22.0 | A toolkit for creating structured configuration languages | https://github.com/hashicorp/hcl |
| **hcloud** | 1.49.0 | Hetzner Cloud command line client | https://github.com/hetznercloud/cli |
| **helix** | 24.07-1 | A post-modern modal text editor written in rust | https://helix-editor.com/ |
| **helix-grammars** | 24.07-1 | Helix grammars | https://helix-editor.com/ |
| **hello** | 2.12.1-1 | Prints a friendly greeting | https://www.gnu.org/software/hello/ |
| **helm** | 3.16.3 | Helm helps you manage Kubernetes applications | https://helm.sh |
| **helm-ls** | 0.1.0 | Language server for Helm | https://github.com/mrjosh/helm-ls |
| **help2man** | 1.49.3 | Conversion tool to create man files | https://www.gnu.org/software/help2man/ |
| **hexcurse** | 1.60.0-6 | Console hexeditor | https://github.com/LonnyGomes/hexcurse |
| **hexedit** | 1.6 | view and edit files in hexadecimal or in ASCII | http://rigaux.org/hexedit.html |
| **hexer** | 1.0.6-1 | A multi-buffer editor for binary files for Unix-like systems that displays its buffer(s) as a hex dump | https://devel.ringlet.net/editors/hexer/ |
| **hexyl** | 0.15.0 | A command-line hex viewer | https://github.com/sharkdp/hexyl |
| **heyu** | 1:2.10.3-1 | Program for remotely controlling lights and appliances | https://www.heyu.org/ |
| **hfsutils** | 3.2.6-1 | Tool for manipulating HFS images. | https://www.mars.org/home/rob/proj/hfs/ |
| **hilbish** | 2024.07.30 | The Moon-powered shell! A comfy and extensible shell for Lua fans! | https://rosettea.github.io/Hilbish/ |
| **hnterm** | 1.0.5-1 | A simple tool to browse Hacker News in the terminal | https://github.com/ggerganov/imtui |
| **hoedown** | 3.0.7-3 | Hoedown is a revived fork of Sundown, the Markdown parser based on the original code of the Upskirt library | https://github.com/hoedown/hoedown |
| **hoedown-static** | 3.0.7-3 | Static libraries for hoedown | https://github.com/hoedown/hoedown |
| **hollywood** | 1.22 | Fill your console with Hollywood melodrama technobabble | https://launchpad.net/hollywood |
| **hors** | 0.8.2-2 | Instant coding answers via the command line (howdoi in rust) | https://github.com/WindSoilder/hors |
| **hr** | 1.4 | A horizontal ruler for your terminal | https://github.com/LuRsT/hr |
| **hstr** | 3.1 | Shell history suggest box for bash and zsh | https://github.com/dvorka/hstr |
| **html-xml-utils** | 8.6 | A number of simple utilities for manipulating HTML and XML files | https://www.w3.org/Tools/HTML-XML-utils/ |
| **html2text** | 1:2.2.3 | Utility that converts HTML documents into plain text | http://www.mbayer.de/html2text/ |
| **htop** | 3.3.0 | Interactive process viewer for Linux | https://htop.dev/ |
| **htslib** | 1.21 | C library for high-throughput sequencing data formats | https://github.com/samtools/htslib |
| **htslib-static** | 1.21 | Static libraries for htslib | https://github.com/samtools/htslib |
| **httping** | 3.6 | ping-like program for http-requests | https://github.com/folkertvanheusden/HTTPing |
| **httrack** | 3.49.5 | It allows you to download a World Wide Web site from the Internet | http://www.httrack.com |
| **httrack-data** | 3.49.5 | Platform-independent data for httrack | http://www.httrack.com |
| **httrack-static** | 3.49.5 | Static libraries for httrack | http://www.httrack.com |
| **hub** | 2.14.2-5 | Command-line wrapper for git that makes you better at GitHub | https://hub.github.com/ |
| **hugo** | 0.138.0 | A fast and flexible static site generator | https://gohugo.io/ |
| **hummin** | 2021.05.18-3 | Command line client for the imperial library of trantor | https://trantor.is/ |
| **hunspell** | 1.7.2 | Spell checker | https://hunspell.github.io |
| **hunspell-en-us** | 20240129 | American english dictionary for hunspell | https://hunspell.github.io |
| **hunspell-fr** | 20221031 | French dictionary for hunspell | https://hunspell.github.io |
| **hunspell-hu** | 2024.03.28 | Hungarian dictionary for hunspell | https://magyarispell.sourceforge.net/ |
| **hunspell-nl** | 2013.07.22 | Dutch dictionary for hunspell | https://www.opentaal.org/ |
| **hunspell-ru** | 20210731 | Russian dictionary for hunspell | https://hunspell.github.io |
| **hunspell-static** | 1.7.2 | Static libraries for hunspell | https://hunspell.github.io |
| **hut** | 0.6.0 | A CLI tool for sr.ht | https://git.sr.ht/~xenrox/hut |
| **hydroxide** | 0.2.29 | A third-party, open-source ProtonMail CardDAV, IMAP and SMTP bridge | https://github.com/emersion/hydroxide |
| **hyperfine** | 1.19.0 | A command-line benchmarking tool | https://github.com/sharkdp/hyperfine |
| **hz** | 0.9.3 | A high-performance and strong-extensibility Go HTTP framework that helps developers build microservices | https://www.cloudwego.io |
| **i2pd** | 2.54.0 | A full-featured C++ implementation of the I2P router | https://i2pd.website/ |
| **i2pd-static** | 2.54.0 | Static libraries for i2pd | https://i2pd.website/ |
| **icecast** | 2.4.4-6 | Icecast is a streaming media (audio/video) server | https://icecast.org |
| **ices** | 2.0.3 | IceS is a source client for the Icecast streaming server. | https://icecast.org/ices/ |
| **iconv** | 1.17 | Utility converting between different character encodings | https://www.gnu.org/software/libiconv/ |
| **icoutils** | 0.32.3 | Extracts and converts images in MS Windows(R) icon and cursor files. | https://www.nongnu.org/icoutils/ |
| **icu-devtools** | 75.1 | Development utilities for International Components for Unicode | http://site.icu-project.org/home |
| **id3lib** | 3.8.3-3 | A software library for manipulating ID3v1/v1.1 and ID3v2 tags | http://id3lib.sourceforge.net/ |
| **id3lib-static** | 3.8.3-3 | Static libraries for id3lib | http://id3lib.sourceforge.net/ |
| **id3ted** | 1.0-3 | A comand line id3 tag editor | https://muennich.github.io/id3ted/ |
| **id3v2** | 0.1.12-1 | A command line id3v2 tag editor | http://id3v2.sourceforge.net/ |
| **imagemagick** | 7.1.1.40-1 | Suite to create, edit, compose, or convert images in a variety of formats | https://www.imagemagick.org/ |
| **imagemagick-static** | 7.1.1.40-1 | Static libraries for imagemagick | https://www.imagemagick.org/ |
| **imath** | 3.1.12 | Library for vector/matrix and math operations, plus the half type | https://imath.readthedocs.io/ |
| **imgflo** | 0.4.2-8 | HTTP image processing server & Flowhub.io compatible runtime | https://github.com/imgflo/imgflo |
| **imlib2** | 1.12.3-1 | Library that does image file loading and saving as well as rendering, manipulation, arbitrary polygon support | https://sourceforge.net/projects/enlightenment/ |
| **imlib2-static** | 1.12.3-1 | Static libraries for imlib2 | https://sourceforge.net/projects/enlightenment/ |
| **indent** | 2.2.13 | C language source code formatting program | https://www.gnu.org/software/indent/ |
| **inetutils** | 2.5 | Collection of common network programs | https://www.gnu.org/software/inetutils/ |
| **influxdb** | 1.8.10-3 | An open source time series database with no external dependencies | https://www.influxdata.com/ |
| **innoextract** | 1.9-6 | A tool to unpack installers created by Inno Setup | https://constexpr.org/innoextract/ |
| **inotify-tools** | 4.23.9.0 | Programs providing a simple interface to inotify | https://github.com/rvoicilas/inotify-tools/wiki |
| **inotify-tools-static** | 4.23.9.0 | Static libraries for inotify-tools | https://github.com/rvoicilas/inotify-tools/wiki |
| **intltool** | 0.51.0-3 | The internationalization tool collection | https://launchpad.net/intltool |
| **inxi** | 3.3.36-1-0 | Full featured CLI system information tool | https://smxi.org/site/about.htm#inxi |
| **ipcalc** | 0.51 | Calculates IP broadcast, network, Cisco wildcard mask, and host ranges | http://jodies.de/ipcalc |
| **iperf3** | 3.17.1 | TCP, UDP, and SCTP network bandwidth measurement tool | https://github.com/esnet/iperf |
| **iperf3-static** | 3.17.1 | Static libraries for iperf3 | https://github.com/esnet/iperf |
| **ipfs** | 0.32.0 | A peer-to-peer hypermedia distribution protocol | https://ipfs.io/ |
| **ipmitool** | 1.8.19 | Command-line interface to IPMI-enabled devices | https://github.com/ipmitool/ipmitool |
| **iproute2** | 6.11.0 | Utilities for controlling networking | https://wiki.linuxfoundation.org/networking/iproute2 |
| **ipv6calc** | 4.2.1 | Does some format changes and calculations of IPv6 addresses | https://www.deepspace6.net/projects/ipv6calc.html |
| **ipv6toolkit** | 2022.09.30-2 | SI6 Networks IPv6 Toolkit | https://www.si6networks.com/research/tools/ipv6toolkit/ |
| **ircd-irc2** | 2.11.2p3-1 | An Internet Relay Chat (IRC) daemon | http://www.irc.org/ |
| **ired** | 0.6-2 | Minimalist hexadecimal editor | https://github.com/radare/ired |
| **irssi** | 1.4.5-2 | Terminal based IRC client | https://irssi.org/ |
| **isync** | 1.5.0-1 | IMAP and MailDir mailbox synchronizer | http://isync.sourceforge.net |
| **iverilog** | 12.0 | Icarus Verilog compiler and simulation tool | http://iverilog.icarus.com/ |
| **iverilog-static** | 12.0 | Static libraries for iverilog | http://iverilog.icarus.com/ |
| **iwyu** | 0.23 | A tool to analyze #includes in C and C++ source files | https://include-what-you-use.org/ |
| **jack** | 0.0.1 | A metapackage that provides JACK Audio Connection Kit | https://github.com/termux/termux-packages |
| **jack-example-tools** | 4 | Official JACK example clients and tools | https://jackaudio.org/ |
| **jack2** | 1.9.22 | The JACK low-latency audio server | https://jackaudio.org/ |
| **jbig2dec** | 0.20 | Decoder implementation of the JBIG2 image compression format | https://jbig2dec.com/ |
| **jbig2dec-static** | 0.20 | Static libraries for jbig2dec | https://jbig2dec.com/ |
| **jbig2enc** | 2023.01.08-2 | An encoder for JBIG2 | https://github.com/agl/jbig2enc |
| **jbig2enc-static** | 2023.01.08-2 | Static libraries for jbig2enc | https://github.com/agl/jbig2enc |
| **jcal** | 0.4.1 | UNIX-cal-like tool to display Jalali (Persian/Iranian) calendar | http://nongnu.org/jcal |
| **jcal-static** | 0.4.1 | Static libraries for jcal | http://nongnu.org/jcal |
| **jfrog-cli** | 2.71.4 | A CLI for JFrog products | https://jfrog.com/getcli |
| **jftui** | 0.7.2 | jftui is a minimalistic, lightweight C99 command line client for the open source Jellyfin media server. | https://github.com/Aanok/jftui |
| **jhead** | 3.08 | Exif Jpeg header manipulation tool | http://www.sentex.net/~mwandel/jhead/ |
| **jigdo** | 0.8.2 | Distribute large images by sending and receiving the files that make them up | http://atterer.org/jigdo/ |
| **jira-go** | 1.0.28-2 | Simple jira command line client written in Go | https://github.com/go-jira/jira |
| **jo** | 1.9 | JSON output from a shell | https://jpmens.net/2016/03/05/a-shell-command-to-create-json-jo/ |
| **joe** | 4.6-2 | Wordstar like text editor | http://joe-editor.sourceforge.net |
| **jove** | 4.17.5.3 | Jove is a compact, powerful, Emacs-style text-editor. | https://directory.fsf.org/wiki/Jove |
| **jp2a** | 1.3.2 | A simple JPEG to ASCII converter | https://github.com/Talinx/jp2a/ |
| **jpegoptim** | 1.5.5-1 | JPEG optimizer that recompresses image files to a smaller size, without losing any information | https://www.kokkonen.net/tjko/projects.html |
| **jq** | 1.7.1 | Command-line JSON processor | https://stedolan.github.io/jq/ |
| **jq-lsp** | 0.1.6 | jq language server | https://github.com/wader/jq-lsp |
| **jq-static** | 1.7.1 | Static libraries for jq | https://stedolan.github.io/jq/ |
| **jql** | 8.0.1 | A JSON Query Language CLI tool | https://github.com/yamafaktory/jql |
| **json-c** | 0.18 | A JSON implementation in C | https://github.com/json-c/json-c/wiki |
| **json-c-static** | 0.18 | Static libraries for json-c | https://github.com/json-c/json-c/wiki |
| **json-glib** | 1.10.0 | GLib JSON manipulation library | https://wiki.gnome.org/Projects/JsonGlib |
| **jsoncpp** | 1.9.6 | C++ library for interacting with JSON | https://github.com/open-source-parsers/jsoncpp |
| **jsoncpp-static** | 1.9.6 | Static libraries for jsoncpp | https://github.com/open-source-parsers/jsoncpp |
| **jump** | 0.51.0-3 | Jump helps you navigate in shell faster by learning your habits | https://github.com/gsamokovarov/jump |
| **jupp** | 3.1jupp41 | User friendly full screen text editor | http://www.mirbsd.org/jupp.htm |
| **just** | 1.36.0 | A handy way to save and run project-specific commands | https://just.systems |
| **jython** | 2.7.3 | Python for the Java Platform | https://www.jython.org/ |
| **k2pdfopt** | 2.55-3 | A tool that optimizes PDF files for viewing on mobile readers | https://www.willus.com/k2pdfopt/ |
| **k9s** | 0.32.6 | Kubernetes CLI To Manage Your Clusters In Style! | https://k9scli.io |
| **kainjow-mustache** | 4.1 | Mustache implementation for modern C++ | https://github.com/kainjow/Mustache |
| **kak-lsp** | 17.1.2 | Language Server Protocol Client for the Kakoune editor | https://github.com/kak-lsp/kak-lsp |
| **kakoune** | 2024.05.18 | Code editor heavily inspired by Vim | https://kakoune.org/ |
| **kakoune-lsp** | 18.0.3 | Language Server Protocol Client for the Kakoune editor | https://github.com/kakoune-lsp/kakoune-lsp |
| **kbd** | 2.6.4 | KBD's showkey utility for examining keycodes | https://kbd-project.org/ |
| **kcptun** | 20241031 | A Stable & Secure Tunnel based on KCP with N:M multiplexing and FEC | https://github.com/xtaci/kcptun |
| **keybase** | 6.4.0 | Key directory that maps social media identities to encryption keys | https://keybase.io |
| **keychain** | 2.8.5-2 | keychain ssh-agent front-end | https://www.funtoo.org/Keychain |
| **kibi** | 0.2.2-1 | A tiny terminal text editor, written in Rust | https://github.com/ilai-deutel/kibi |
| **kiwix-tools** | 3.7.0 | A collection of Kiwix related command line tools | https://github.com/kiwix/kiwix-tools |
| **knockd** | 0.8-2 | A port-knocking daemon | https://zeroflux.org/projects/knock |
| **knot-utils** | 3.2.4-1 | Knot DNS utilities | https://www.knot-dns.cz/ |
| **kona** | 20211225 | Open-source implementation of the APL-like K programming language | https://github.com/kevinlawler/kona |
| **kotlin** | 2.0.21 | The Kotlin Programming Language | https://kotlinlang.org/ |
| **krb5** | 1.21.3 | The Kerberos network authentication system | https://web.mit.edu/kerberos |
| **kubecolor** | 0.4.0 | Colorize your kubectl output | https://github.com/kubecolor/kubecolor |
| **kubectl** | 1.31.2 | Kubernetes.io client binary | https://kubernetes.io/ |
| **kubelogin** | 1.31.0 | A kubectl plugin for Kubernetes OpenID Connect (OIDC) authentication | https://github.com/int128/kubelogin |
| **ladspa-sdk** | 1.17-2 | Linux Audio Developer's Simple Plugin API | https://www.ladspa.org/ |
| **lame** | 3.100-5 | High quality MPEG Audio Layer III (MP3) encoder - frontend | https://lame.sourceforge.io/ |
| **lastpass-cli** | 1.6.1 | LastPass command line interface tool | https://lastpass.com/ |
| **lazygit** | 0.44.1 | Simple terminal UI for git commands | https://github.com/jesseduffield/lazygit |
| **lazyread** | 2.0-1 | An auto-scroller, pager, and e-book reader all in one | http://lazyread.sourceforge.net/ |
| **lcal** | 2.1.0 | A multi-platform program which generates PostScript lunar calendars in a yearly format | https://pcal.sourceforge.net/ |
| **ldc** | 1.30.0-1 | D programming language compiler, built with LLVM | https://github.com/ldc-developers/ldc |
| **ldd** | 0.3 | Fake ldd command | https://github.com/termux/termux-packages |
| **ldns** | 1.8.4 | Library for simplifying DNS programming and supporting recent and experimental RFCs | https://www.nlnetlabs.nl/projects/ldns/ |
| **ldns-static** | 1.8.4 | Static libraries for ldns | https://www.nlnetlabs.nl/projects/ldns/ |
| **ledger** | 3.3.2-3 | Powerful, double-entry accounting system | https://www.ledger-cli.org |
| **leptonica** | 1.85.0 | Library for image processing and image analysis | http://www.leptonica.com/ |
| **leptonica-static** | 1.85.0 | Static libraries for leptonica | http://www.leptonica.com/ |
| **less** | 661 | Terminal pager program used to view the contents of a text file one screen at a time | https://www.greenwoodsoftware.com/less/ |
| **lesspipe** | 2.15-1 | An input filter for the pager less | http://www-zeuthen.desy.de/~friebel/unix/lesspipe.html |
| **leveldb** | 1.23-3 | Fast key-value storage library | https://github.com/google/leveldb |
| **lexbor** | 2.4.0 | Fast embeddable web browser engine written in C with no dependencies | https://lexbor.com |
| **lexter** | 1.0.3-4 | A real-time word puzzle for text terminals | https://www.kyne.au/~mark/software/lexter.php |
| **lf** | 33 | Terminal file manager | https://github.com/gokcehan/lf |
| **lftp** | 4.9.2-6 | FTP/HTTP client and file transfer program | https://lftp.tech/ |
| **lftp-static** | 4.9.2-6 | Static libraries for lftp | https://lftp.tech/ |
| **lgogdownloader** | 3.15-1 | Open source downloader to GOG.com for Linux users using the same API as the official GOGDownloader | https://sites.google.com/site/gogdownloader/ |
| **lhasa** | 0.4.0 | LHA compressor/decompressor | https://fragglet.github.io/lhasa/ |
| **lhasa-static** | 0.4.0 | Static libraries for lhasa | https://fragglet.github.io/lhasa/ |
| **liba52** | 0.8.0-1 | A free library for decoding ATSC A/52 streams | http://liba52.sourceforge.net/ |
| **liba52-static** | 0.8.0-1 | Static libraries for liba52 | http://liba52.sourceforge.net/ |
| **libacl** | 2.3.1 | Access control list shared library | http://savannah.nongnu.org/projects/acl |
| **libacl-static** | 2.3.1 | Static libraries for libacl | http://savannah.nongnu.org/projects/acl |
| **libaml** | 0.3.0 | Andri's Main Loop library | https://github.com/any1/aml |
| **libandroid-complex-math** | 0.2 | A shared library providing libm complex math functions | https://android.googlesource.com/platform/bionic/+/refs/heads/master/libm/upstream-netbsd/lib/libm/complex |
| **libandroid-complex-math-static** | 0.2 | Static libraries for libandroid-complex-math | https://android.googlesource.com/platform/bionic/+/refs/heads/master/libm/upstream-netbsd/lib/libm/complex |
| **libandroid-execinfo** | 0.1-1 | Shared library for the backtrace system function | https://man7.org/linux/man-pages/man3/backtrace.3.html |
| **libandroid-execinfo-static** | 0.1-1 | Static libraries for libandroid-execinfo | https://man7.org/linux/man-pages/man3/backtrace.3.html |
| **libandroid-glob** | 0.6-2 | Shared library for the glob(3) system function | https://man7.org/linux/man-pages/man3/glob.3.html |
| **libandroid-glob-static** | 0.6-2 | Static libraries for libandroid-glob | https://man7.org/linux/man-pages/man3/glob.3.html |
| **libandroid-posix-semaphore** | 0.1-3 | Shared library for the posix semaphore system function | https://man7.org/linux/man-pages/man7/sem_overview.7.html |
| **libandroid-posix-semaphore-static** | 0.1-3 | Static libraries for libandroid-posix-semaphore | https://man7.org/linux/man-pages/man7/sem_overview.7.html |
| **libandroid-selinux** | 14.0.0.11 | Android fork of libselinux, an SELinux userland library | https://selinuxproject.org |
| **libandroid-shmem** | 0.5 | System V shared memory emulation on Android using ashmem | https://github.com/termux/libandroid-shmem |
| **libandroid-shmem-static** | 0.5 | Static libraries for libandroid-shmem | https://github.com/termux/libandroid-shmem |
| **libandroid-spawn** | 0.3 | Shared library for the posix_spawn system function | https://man7.org/linux/man-pages/man3/posix_spawn.3.html |
| **libandroid-spawn-static** | 0.3 | Static libraries for libandroid-spawn | https://man7.org/linux/man-pages/man3/posix_spawn.3.html |
| **libandroid-stub** | 27c | Stub libandroid.so for non-Android certified environment | https://android.googlesource.com/platform/frameworks/base/+/main/native/android |
| **libandroid-support** | 29 | Library extending the Android C library (Bionic) for additional multibyte, locale and math support | https://github.com/termux/libandroid-support |
| **libandroid-support-static** | 29 | Static libraries for libandroid-support | https://github.com/termux/libandroid-support |
| **libandroid-sysv-semaphore** | 0.1 | A shared library providing System V semaphores | https://android.googlesource.com/platform/bionic/+/refs/heads/master/libc/bionic/sys_sem.cpp |
| **libandroid-sysv-semaphore-static** | 0.1 | Static libraries for libandroid-sysv-semaphore | https://android.googlesource.com/platform/bionic/+/refs/heads/master/libc/bionic/sys_sem.cpp |
| **libandroid-utimes** | 0.4 | futimes, futimesat and lutimes from bionic | https://github.com/termux/libandroid-utimes |
| **libandroid-utimes-static** | 0.4 | Static libraries for libandroid-utimes | https://github.com/termux/libandroid-utimes |
| **libandroid-wordexp** | 0.1 | Shared library for the wordexp(3) system function | https://man7.org/linux/man-pages/man3/wordexp.3.html |
| **libandroid-wordexp-static** | 0.1 | Static libraries for libandroid-wordexp | https://man7.org/linux/man-pages/man3/wordexp.3.html |
| **libao** | 1.2.2-7 | A cross platform audio library | https://www.xiph.org/ao/ |
| **libao-static** | 1.2.2-7 | Static libraries for libao | https://www.xiph.org/ao/ |
| **libaom** | 3.10.0 | AV1 Video Codec Library | https://aomedia.org/ |
| **libaom-static** | 3.10.0 | Static libraries for libaom | https://aomedia.org/ |
| **libapt-pkg-perl** | 0.1.40-10 | Perl interface to APT's libapt-pkg | https://packages.debian.org/libapt-pkg-perl |
| **libarchive** | 3.7.7 | Multi-format archive and compression library | https://www.libarchive.org/ |
| **libarchive-static** | 3.7.7 | Static libraries for libarchive | https://www.libarchive.org/ |
| **libarrow-cpp** | 18.0.0 | C++ libraries for Apache Arrow | https://github.com/apache/arrow |
| **libasio** | 1.24.0 | Cross-platform C++ library for network and low-level I/O programming | https://think-async.com/Asio |
| **libasm** | 0.191 | Library to assemble and disassemble instructions | https://sourceware.org/elfutils/ |
| **libasm-static** | 0.191 | Static library to assemble and disassemble instructions | https://sourceware.org/elfutils/ |
| **libass** | 0.17.3 | A portable library for SSA/ASS subtitles rendering | https://github.com/libass/libass |
| **libass-static** | 0.17.3 | Static libraries for libass | https://github.com/libass/libass |
| **libassuan** | 3.0.1-2 | Library implementing the Assuan IPC protocol used between most newer GnuPG components | https://www.gnupg.org/related_software/libassuan/ |
| **libassuan-static** | 3.0.1-2 | Static libraries for libassuan | https://www.gnupg.org/related_software/libassuan/ |
| **libatomic-ops** | 7.8.2 | Provides semi-portable access to hardware-provided atomic memory update operations | https://github.com/ivmai/libatomic_ops |
| **libatomic-ops-static** | 7.8.2 | Static libraries for libatomic-ops | https://github.com/ivmai/libatomic_ops |
| **libbcprov-java** | 1.79 | A lightweight cryptography API for Java | https://www.bouncycastle.org/java.html |
| **libblkid** | 2.40.2-2 | Block device identification library | https://en.wikipedia.org/wiki/Util-linux |
| **libblocksruntime** | 1:6.0.2 | LLVM Blocks runtime library | https://github.com/swiftlang/swift-corelibs-libdispatch |
| **libblosc** | 1.21.6 | A blocking, shuffling and loss-less compression library | https://www.blosc.org |
| **libblosc-static** | 1.21.6 | Static libraries for libblosc | https://www.blosc.org |
| **libbluray** | 1.3.4-1 | An open-source library designed for Blu-Ray Discs playback for media players | https://code.videolan.org/videolan/libbluray/ |
| **libbluray-static** | 1.3.4-1 | Static libraries for libbluray | https://code.videolan.org/videolan/libbluray/ |
| **libbluray-utils** | 1.3.4-1 | Example utilities for libbluray | https://code.videolan.org/videolan/libbluray/ |
| **libbs2b** | 3.1.0-1 | Bauer stereophonic-to-binaural DSP | http://bs2b.sourceforge.net/ |
| **libbs2b-static** | 3.1.0-1 | Static libraries for libbs2b | http://bs2b.sourceforge.net/ |
| **libbsd** | 0.11.7-1 | utility functions from BSD systems | https://libbsd.freedesktop.org |
| **libbsd-static** | 0.11.7-1 | Static libraries for libbsd | https://libbsd.freedesktop.org |
| **libbullet** | 3.25 | SDK for real-time collision detection and multi-physics simulation for robotics, VR, etc | https://github.com/bulletphysics/bullet3 |
| **libburn** | 1.5.6 | Library for reading, mastering and writing optical discs | https://dev.lovelyhq.com/libburnia |
| **libburn-static** | 1.5.6 | Static libraries for libburn | https://dev.lovelyhq.com/libburnia |
| **libbz2** | 1.0.8-6 | BZ2 format compression library | http://www.bzip.org/ |
| **libc++** | 27c | C++ Standard Library | https://libcxx.llvm.org/ |
| **libc++utilities** | 5.26.1 | Useful C++ classes and routines such as argument parser, IO and conversion utilities | https://github.com/Martchus/cpp-utilities |
| **libc-client** | 2007f-3 | UW IMAP c-client library | https://www.washington.edu/imap/ |
| **libc-client-static** | 2007f-3 | Static libraries for libc-client | https://www.washington.edu/imap/ |
| **libcaca** | 0.99.beta20-1 | Graphics library that outputs text instead of pixels | http://caca.zoy.org/wiki/libcaca |
| **libcaca-static** | 0.99.beta20-1 | Static libraries for libcaca | http://caca.zoy.org/wiki/libcaca |
| **libcairo** | 1.18.2 | Cairo 2D vector graphics library | https://cairographics.org |
| **libcairomm-1.0** | 1.14.5 | Provides a C++ interface to cairo | https://www.cairographics.org/cairomm/ |
| **libcairomm-1.16** | 1.18.0 | Provides a C++ interface to cairo | https://www.cairographics.org/cairomm/ |
| **libcap** | 2.69 | POSIX 1003.1e capabilities | https://sites.google.com/site/fullycapable/ |
| **libcap-ng** | 2:0.8.5 | Library making programming with POSIX capabilities easier than traditional libcap | https://people.redhat.com/sgrubb/libcap-ng/ |
| **libcap-ng-static** | 2:0.8.5 | Static libraries for libcap-ng | https://people.redhat.com/sgrubb/libcap-ng/ |
| **libcap-static** | 2.69 | Static libraries for libcap | https://sites.google.com/site/fullycapable/ |
| **libccd** | 2.1-1 | Library for collision detection between two convex shapes | https://github.com/danfis/libccd |
| **libcddb** | 1.3.2 | A C library to access data on a CDDB server | http://libcddb.sourceforge.net/ |
| **libcddb-static** | 1.3.2 | Static libraries for libcddb | http://libcddb.sourceforge.net/ |
| **libcdk** | 5.0-20230201-0 | Curses Development Kit | https://dickey.his.com/cdk/cdk.html |
| **libcec** | 6.0.2-1 | Provides support for Pulse-Eight's USB-CEC adapter and other CEC capable hardware | http://libcec.pulse-eight.com/ |
| **libceres-solver** | 2.2.0-1 | C++ library for modeling and solving large, complicated optimization problems | http://ceres-solver.org |
| **libchipmunk** | 7.0.3-1 | A fast and lightweight 2D game physics library | http://chipmunk2d.net |
| **libcln** | 1.3.7 | CLN is a library for efficient computations with all kinds of numbers in arbitrary precision | https://www.ginac.de/CLN/ |
| **libcln-static** | 1.3.7 | Static libraries for libcln | https://www.ginac.de/CLN/ |
| **libcloog** | 0.21.1 | Library that generates loops for scanning polyhedra | http://www.bastoul.net/cloog/index.php |
| **libcloog-static** | 0.21.1 | Static libraries for libcloog | http://www.bastoul.net/cloog/index.php |
| **libcoap** | 4.3.5-rc3-0 | Implementation of CoAP, a lightweight protocol for resource constrained devices | https://libcoap.net/ |
| **libcoap-static** | 4.3.5-rc3-0 | Static libraries for libcoap | https://libcoap.net/ |
| **libcoinor-cgl** | 0.60.8 | An open-source cut generation library for COIN-OR projects | https://github.com/coin-or/Cgl |
| **libcoinor-cgl-static** | 0.60.8 | Static libraries for libcoinor-cgl | https://github.com/coin-or/Cgl |
| **libcoinor-osi** | 1:0.108.8 | An abstract base class to a generic linear programming (LP) solver | https://github.com/coin-or/Osi |
| **libcoinor-osi-static** | 1:0.108.8 | Static libraries for libcoinor-osi | https://github.com/coin-or/Osi |
| **libcoinor-utils** | 1:2.11.11 | An open-source collection of classes and helper functions for COIN-OR projects | https://github.com/coin-or/CoinUtils |
| **libcoinor-utils-static** | 1:2.11.11 | Static libraries for libcoinor-utils | https://github.com/coin-or/CoinUtils |
| **libcommons-lang3-java** | 3.17.0 | A host of helper utilities for the java.lang API | https://commons.apache.org/proper/commons-lang/ |
| **libcompiler-rt** | 19.1.3 | Compiler runtime libraries for clang | https://clang.llvm.org/ |
| **libconfig** | 1.7.3-3 | C/C++ Configuration File Library | https://github.com/hyperrealm/libconfig |
| **libconfig-static** | 1.7.3-3 | Static libraries for libconfig | https://github.com/hyperrealm/libconfig |
| **libconfuse** | 3.3 | Small configuration file parser library for C | https://github.com/martinh/libconfuse |
| **libconfuse-static** | 3.3 | Static libraries for libconfuse | https://github.com/martinh/libconfuse |
| **libcpufeatures** | 0.9.0 | A cross-platform C library to retrieve CPU features (such as available instructions) at runtime | https://github.com/google/cpu_features |
| **libcroco** | 0.6.13-8 | CSS parsing and manipulation library | https://gitlab.gnome.org/Archive/libcroco |
| **libcroco-static** | 0.6.13-8 | Static libraries for libcroco | https://gitlab.gnome.org/Archive/libcroco |
| **libcrypt** | 0.2-5 | A crypt(3) implementation | http://michael.dipperstein.com/crypt/ |
| **libcue** | 2.3.0 | CUE Sheet Parser Library | https://github.com/lipnitsk/libcue/ |
| **libcunit** | 2.1.3 | C Unit Testing Framework | https://sourceforge.net/projects/cunit/ |
| **libcunit-static** | 2.1.3 | Static libraries for libcunit | https://sourceforge.net/projects/cunit/ |
| **libcurl** | 8.11.0-1 | Easy-to-use client-side URL transfer library | https://curl.se/ |
| **libcurl-static** | 8.11.0-1 | Static libraries for libcurl | https://curl.se/ |
| **libcwidget** | 0.5.18 | high-level terminal interface library for C++ | https://salsa.debian.org/cwidget-team/ |
| **libcwidget-static** | 0.5.18 | Static libraries for libcwidget | https://salsa.debian.org/cwidget-team/ |
| **libczmq** | 4.2.1-3 | High-level C binding for ZeroMQ | https://zeromq.org/ |
| **libczmq-static** | 4.2.1-3 | Static libraries for libczmq | https://zeromq.org/ |
| **libdaemon** | 0.14 | A lightweight C library that eases the writing of UNIX daemons | https://0pointer.de/lennart/projects/libdaemon/ |
| **libdaemon-static** | 0.14 | Static libraries for libdaemon | https://0pointer.de/lennart/projects/libdaemon/ |
| **libdav1d** | 1.5.0 | AV1 cross-platform decoder focused on speed and correctness | https://code.videolan.org/videolan/dav1d/ |
| **libdb** | 18.1.40-4 | The Berkeley DB embedded database system (library) | https://www.oracle.com/database/berkeley-db |
| **libdb-static** | 18.1.40-4 | Static libraries for libdb | https://www.oracle.com/database/berkeley-db |
| **libde265** | 1.0.15 | H.265/HEVC video stream decoder library | https://github.com/strukturag/libde265 |
| **libde265-static** | 1.0.15 | Static libraries for libde265 | https://github.com/strukturag/libde265 |
| **libdebuginfod** | 0.191 | Library for debuginfod | https://sourceware.org/elfutils/ |
| **libdecor** | 0.2.2 | Client-side decorations library for Wayland clients | https://gitlab.freedesktop.org/libdecor/libdecor |
| **libdeflate** | 1.22 | C library for fast compression and decompression | https://github.com/ebiggers/libdeflate |
| **libdeflate-static** | 1.22 | Static libraries for libdeflate | https://github.com/ebiggers/libdeflate |
| **libdevil** | 1.8.0-6 | A cross-platform image library utilizing a simple syntax | https://openil.sourceforge.net/ |
| **libdispatch** | 1:6.0.2 | The libdispatch project, for concurrency on multicore hardware | https://github.com/swiftlang/swift-corelibs-libdispatch |
| **libdmtx** | 0.7.7 | A software library that enables programs to read and write Data Matrix barcodes | https://github.com/dmtx/libdmtx |
| **libdmtx-static** | 0.7.7 | Static libraries for libdmtx | https://github.com/dmtx/libdmtx |
| **libdrm** | 2.4.123 | Userspace interface to kernel DRM services | https://dri.freedesktop.org/wiki/ |
| **libduckdb** | 1.1.3 | An in-process SQL OLAP database management system | https://duckdb.org/ |
| **libduckdb-static** | 1.1.3 | Static libraries for libduckdb | https://duckdb.org/ |
| **libduktape** | 2.7.0-1 | An embeddable Javascript engine with a focus on portability and compact footprint | https://www.duktape.org/ |
| **libdvbcsa** | 1.1.0-2 | An implementation of the DVB Common Scrambling Algorithm - DVB/CSA - with encryption and decryption capabilities | https://www.videolan.org/developers/libdvbcsa.html |
| **libdvbcsa-static** | 1.1.0-2 | Static libraries for libdvbcsa | https://www.videolan.org/developers/libdvbcsa.html |
| **libdvbpsi** | 1.3.3 | Simple MPEG TS PSI parser library supporting various standards | https://code.videolan.org/videolan/libdvbpsi/ |
| **libdvbpsi-static** | 1.3.3 | Static libraries for libdvbpsi | https://code.videolan.org/videolan/libdvbpsi/ |
| **libdvdnav** | 6.1.1 | A library that allows easy use of sophisticated DVD navigation features | https://www.videolan.org/developers/libdvdnav.html |
| **libdvdnav-static** | 6.1.1 | Static libraries for libdvdnav | https://www.videolan.org/developers/libdvdnav.html |