-
Notifications
You must be signed in to change notification settings - Fork 7
/
pkgs.yaml
10632 lines (10632 loc) · 380 KB
/
pkgs.yaml
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
- Package: 0verkill
Version: "1:0.16"
Description: Bloody 2D action deathmatch-like game in ASCII-ART
Homepage: https://github.com/hackndev/0verkill
- Package: 2048-c
Version: 2022.10.23
Description: Console version of the game 2048 for GNU/Linux
Homepage: https://github.com/mevdschee/2048.c
- Package: 2ping
Version: 4.5.1-4
Description: A bi-directional ping utility
Homepage: https://www.finnie.org/software/2ping/
- Package: 6tunnel
Version: "0.13"
Description: Allows you to use services provided by IPv6 hosts with IPv4-only applications and vice-versa
Homepage: https://github.com/wojtekka/6tunnel
- Package: 7zip
Version: "24.08"
Description: 7-Zip file archiver with a high compression ratio
Homepage: https://www.7-zip.org
- Package: 8086tiny
Version: 1.25-4
Description: A PC XT-compatible emulator/virtual machine
Homepage: https://github.com/adriancable/8086tiny
- Package: a52dec
Version: 0.8.0-1
Description: A test program for liba52
Homepage: http://liba52.sourceforge.net/
- Package: aalib
Version: 1.4rc5-11
Description: A portable ASCII art graphic library
Homepage: https://sourceforge.net/projects/aa-project/
- Package: aalib-static
Version: 1.4rc5-11
Description: Static libraries for aalib
Homepage: https://sourceforge.net/projects/aa-project/
- Package: aapt
Version: 13.0.0.6-16
Description: Android Asset Packaging Tool
Homepage: https://elinux.org/Android_aapt
- Package: aapt2
Version: 13.0.0.6-16
Description: AAPT2 (Android Asset Packaging Tool)
Homepage: https://elinux.org/Android_aapt
- Package: abduco
Version: 0.6-3
Description: Clean and simple terminal session manager
Homepage: https://www.brain-dump.org/projects/abduco/
- Package: abook
Version: 0.6.1
Description: Abook is a text-based addressbook program designed to use with mutt mail client
Homepage: http://abook.sourceforge.net/
- Package: abootimg
Version: 0.6-2
Description: Pack or unpack android boot images
Homepage: https://gitlab.com/ajs124/abootimg
- Package: abseil-cpp
Version: 20240116.2-1
Description: Abseil C++ Common Libraries
Homepage: https://abseil.io/
- Package: ack-grep
Version: 3.7.0
Description: Tool like grep optimized for programmers
Homepage: https://beyondgrep.com/
- Package: acr
Version: 2.1.4
Description: A fully compatible autoconf replacement
Homepage: https://github.com/radare/acr
- Package: adms
Version: 2.3.7
Description: A code generator for the Verilog-AMS language
Homepage: https://github.com/qucs/adms
- Package: aerc
Version: 0.18.2
Description: A pretty good email client
Homepage: https://aerc-mail.org/
- Package: agate
Version: 3.3.11
Description: Very simple server for the Gemini hypertext protocol
Homepage: https://github.com/mbrubeck/agate
- Package: age
Version: 1:1.2.0
Description: A simple, modern and secure encryption tool with small explicit keys, no config options, and UNIX-style composability
Homepage: https://github.com/FiloSottile/age
- Package: agg
Version: 1.5.0
Description: asciinema gif generator
Homepage: https://github.com/asciinema/agg
- Package: aha
Version: 0.5.1
Description: Converts ANSI escape sequences of a unix terminal to HTML code
Homepage: https://github.com/theZiz/aha
- Package: aichat
Version: 0.24.0
Description: A powerful chatgpt cli
Homepage: https://github.com/sigoden/aichat
- Package: aidl
Version: 13.0.0.6-16
Description: Android Interface Definition Language (AIDL)
Homepage: https://elinux.org/Android_aapt
- Package: alass
Version: 2.0.0-2
Description: Automatic Language-Agnostic Subtitle Synchronization
Homepage: https://github.com/kaegi/alass
- Package: alembic
Version: 1.8.7
Description: A framework for sharing scene data that includes a C++ lib, a file format and client plugin
Homepage: https://alembic.io
- Package: algernon
Version: 1.17.1
Description: Small self-contained web server with Lua, Markdown, QUIC, Redis and PostgreSQL support
Homepage: https://algernon.roboticoverlords.org/
- Package: alist
Version: 3.40.0
Description: A file list program that supports multiple storage
Homepage: https://alist.nn.ci
- Package: alpine
Version: "2.26"
Description: Fast, easy to use email client
Homepage: http://alpine.x10host.com/
- Package: alsa-lib
Version: 1.2.13
Description: The Advanced Linux Sound Architecture (ALSA) - library
Homepage: https://www.alsa-project.org
- Package: alsa-plugins
Version: 1.2.12
Description: The Advanced Linux Sound Architecture (ALSA) - plugins
Homepage: https://www.alsa-project.org
- Package: alsa-utils
Version: 1.2.13
Description: The Advanced Linux Sound Architecture (ALSA) - utils
Homepage: https://www.alsa-project.org
- Package: alsa-utils-static
Version: 1.2.13
Description: Static libraries for alsa-utils
Homepage: https://www.alsa-project.org
- Package: amber
Version: 0.6.0
Description: A code search / replace tool
Homepage: https://github.com/dalance/amber
- Package: amfora
Version: 1.10.0-1
Description: Aims to be the best looking Gemini client
Homepage: https://github.com/makeworld-the-better-one/amfora
- Package: anacron
Version: "2.3"
Description: A periodic command scheduler
Homepage: http://anacron.sourceforge.net/
- Package: android-tools
Version: 35.0.2
Description: Android platform tools
Homepage: https://developer.android.com/
- Package: anewer
Version: 0.1.6
Description: Append lines from stdin to a file if these lines do not present in that file (aHash-based uniq)
Homepage: https://github.com/ysf/anewer
- Package: angband
Version: 4.2.5
Description: Dungeon exploration adventure game
Homepage: https://rephial.org/
- Package: angle-android
Version: 2.1.24318-9dd69aae-1
Description: A conformant OpenGL ES implementation for Windows, Mac, Linux, iOS and Android
Homepage: https://chromium.googlesource.com/angle/angle
- Package: angle-grinder
Version: 0.19.4
Description: Slice and dice logs on the command line
Homepage: https://github.com/rcoh/angle-grinder
- Package: ani-cli
Version: "4.9"
Description: A cli to browse and watch anime
Homepage: https://github.com/pystardust/ani-cli
- Package: ansifilter
Version: 2.21-1
Description: Strip or convert ANSI codes into HTML, (La)Tex, RTF, or BBCode
Homepage: http://www.andre-simon.de/doku/ansifilter/en/ansifilter.php
- Package: ant
Version: 1.10.15
Description: Java based build tool like make
Homepage: https://ant.apache.org/
- Package: antibody
Version: 6.1.1-2
Description: The fastest shell plugin manager
Homepage: https://github.com/getantibody/antibody
- Package: antiword
Version: 0.37-3
Description: A free MS Word reader
Homepage: https://en.m.wikipedia.org/wiki/Antiword
- Package: aom-tools
Version: 3.11.0
Description: Command-line tools using AOMedia library
Homepage: https://aomedia.org/
- Package: apache-orc
Version: 2.0.3
Description: Columnar storage for Hadoop workloads
Homepage: https://orc.apache.org/
- Package: apache2
Version: 1:2.4.62-1
Description: Apache Web Server
Homepage: https://httpd.apache.org
- Package: apkeep
Version: 0.17.0
Description: A command-line tool for downloading APK files from various sources
Homepage: https://github.com/EFForg/apkeep
- Package: apksigner
Version: 33.0.1
Description: APK signing tool from Android SDK
Homepage: https://developer.android.com/studio/command-line/apksigner
- Package: appstream
Version: 1.0.3
Description: Provides a standard for creating app stores across distributions
Homepage: https://www.freedesktop.org/wiki/Distributions/AppStream/
- Package: apr
Version: 1.7.5
Description: Apache Portable Runtime Library
Homepage: https://apr.apache.org/
- Package: apr-static
Version: 1.7.5
Description: Static libraries for apr
Homepage: https://apr.apache.org/
- Package: apr-util
Version: 1.6.3-2
Description: Apache Portable Runtime Utility Library
Homepage: https://apr.apache.org/
- Package: apr-util-static
Version: 1.6.3-2
Description: Static libraries for apr-util
Homepage: https://apr.apache.org/
- Package: apt
Version: 2.8.1-1
Description: Front-end for the dpkg package manager
Homepage: https://packages.debian.org/apt
- Package: apt-file
Version: "3.3"
Description: search for files within packages
Homepage: https://wiki.debian.org/apt-file
- Package: apt-ftparchive
Version: 2.8.1-1
Description: apt-ftparchive is the command line tool that generates the index files that APT uses to access a distribution source
Homepage: https://packages.debian.org/apt
- Package: apt-transport-tor
Version: 2.8.1-1
Description: APT transport for anonymous package downloads via Tor
Homepage: https://packages.debian.org/apt
- Package: aptitude
Version: 0.8.13
Description: terminal-based package manager
Homepage: https://wiki.debian.org/Aptitude
- Package: aptly
Version: 1.5.0-3
Description: A Swiss Army knife for Debian repository management
Homepage: https://www.aptly.info
- Package: argon2
Version: 20190702-1
Description: A password-hashing function (reference C implementation)
Homepage: https://github.com/P-H-C/phc-winner-argon2
- Package: argon2-static
Version: 20190702-1
Description: Static libraries for argon2
Homepage: https://github.com/P-H-C/phc-winner-argon2
- Package: argp
Version: 1.5.0
Description: Standalone version of arguments parsing functions from GLIBC
Homepage: https://github.com/argp-standalone/argp-standalone
- Package: argp-static
Version: 1.5.0
Description: Static libraries for argp
Homepage: https://github.com/argp-standalone/argp-standalone
- Package: aria2
Version: 1.37.0
Description: Download utility supporting HTTP/HTTPS, FTP, BitTorrent and Metalink
Homepage: https://aria2.github.io
- Package: arj
Version: 3.10.22-5
Description: Open-source version of arj archiver
Homepage: http://arj.sourceforge.net/
- Package: artalk
Version: 2.9.1
Description: A self-hosted comment system
Homepage: https://artalk.js.org/
- Package: arturo
Version: 0.9.83
Description: Simple, expressive & portable programming language for efficient scripting
Homepage: https://arturo-lang.io
- Package: asciidoc
Version: 10.2.1-1
Description: Text document format for short documents, articles, books and UNIX man pages.
Homepage: https://asciidoc.org
- Package: asciidoctor
Version: 2.0.23
Description: An implementation of AsciiDoc in Ruby
Homepage: https://asciidoctor.org/
- Package: asciinema
Version: 2.4.0-1
Description: Record and share your terminal sessions, the right way
Homepage: https://asciinema.org/
- Package: asm-lsp
Version: 0.9.0
Description: language server for NASM/GAS/GO assembly
Homepage: https://github.com/bergercookie/asm-lsp
- Package: aspell
Version: 0.60.8.1
Description: A free and open source spell checker designed to replace Ispell
Homepage: http://aspell.net
- Package: aspell-de
Version: 1:20161207.7.0
Description: German dictionary for aspell
Homepage: http://aspell.net/
- Package: aspell-en
Version: 1:2020.12.07
Description: English dictionary for aspell
Homepage: http://aspell.net/
- Package: aspell-es
Version: 2:1.11-2-0
Description: Spanish dictionary for aspell
Homepage: http://aspell.net/
- Package: aspell-fr
Version: 2:0.50-3-1
Description: French dictionary for aspell
Homepage: http://aspell.net/
- Package: aspell-static
Version: 0.60.8.1
Description: Static libraries for aspell
Homepage: http://aspell.net
- Package: assimp
Version: 5.4.3
Description: Library to import various well-known 3D model formats in an uniform manner
Homepage: https://assimp.sourceforge.net/index.html
- Package: assimp-static
Version: 5.3.1
Description: Static libraries for assimp
Homepage: https://assimp.sourceforge.net/index.html
- Package: astra-sm
Version: 2019.06.19
Description: Software for digital TV broadcasting
Homepage: https://gitlab.com/berdyansk/astra-sm
- Package: asymptote
Version: "2.89"
Description: A powerful descriptive vector graphics language for technical drawing
Homepage: https://asymptote.sourceforge.io/
- Package: at
Version: 3.2.5
Description: AT and batch delayed command scheduling utility and daemon
Homepage: https://salsa.debian.org/debian/at
- Package: at-spi2-core
Version: 2.54.0
Description: Assistive Technology Service Provider Interface (AT-SPI)
Homepage: https://wiki.gnome.org/Accessibility
- Package: atomicparsley
Version: 1:20240608.083822.1ed9031
Description: Read, parse and set metadata of MPEG-4 and 3gp files
Homepage: https://github.com/wez/atomicparsley
- Package: atomvm
Version: 1:0.6.5
Description: The minimal Erlang VM implementation
Homepage: https://github.com/bettio/AtomVM
- Package: atool
Version: 0.39.0-1
Description: tool for managing file archives of various types
Homepage: https://www.nongnu.org/atool
- Package: attr
Version: 2.5.2
Description: Utilities for manipulating filesystem extended attributes
Homepage: http://savannah.nongnu.org/projects/attr/
- Package: attr-static
Version: 2.5.2
Description: Static libraries for attr
Homepage: http://savannah.nongnu.org/projects/attr/
- Package: atuin
Version: 18.3.0
Description: Magical shell history
Homepage: https://atuin.sh/
- Package: aubio
Version: 0.4.9-3
Description: A library to label music and sounds
Homepage: https://aubio.org/
- Package: aubio-static
Version: 0.4.9-3
Description: Static libraries for aubio
Homepage: https://aubio.org/
- Package: autoconf
Version: "2.72"
Description: Creator of shell scripts to configure source code packages
Homepage: https://www.gnu.org/software/autoconf/autoconf.html
- Package: autoconf-archive
Version: 2024.10.16
Description: A collection of freely re-usable Autoconf macros
Homepage: https://www.gnu.org/software/autoconf-archive/
- Package: autoconf213
Version: "2.13"
Description: Creator of shell scripts to configure source code packages (legacy v2.13)
Homepage: https://www.gnu.org/software/autoconf/autoconf.html
- Package: autojump
Version: 22.5.3-1
Description: A faster way to navigate your filesystem
Homepage: https://github.com/wting/autojump
- Package: automake
Version: "1.17"
Description: Tool for automatically generating Makefile.in files
Homepage: https://www.gnu.org/software/automake/
- Package: autossh
Version: 1.4g-3
Description: Automatically restart SSH sessions and tunnels
Homepage: https://www.harding.motd.ca/autossh/
- Package: aview
Version: 1.3.0rc1-5
Description: High quality ascii-art image browser and animation player
Homepage: http://aa-project.sourceforge.net/aview/
- Package: avra
Version: 1.4.2
Description: Assember for the Atmel AVR microcontroller family
Homepage: https://github.com/Ro5bert/avra
- Package: await
Version: 1.0.8
Description: Runs list of commands in parallel and waits for their termination
Homepage: https://await-cli.app/
- Package: awesomeshot
Version: 1.1.0
Description: A command-line screenshot tool written in bash
Homepage: https://github.com/mayTermux/awesomeshot
- Package: axel
Version: 2.17.14
Description: light command line download accelerator
Homepage: https://github.com/axel-download-accelerator/axel
- Package: b3sum
Version: 1.5.5
Description: A command line utility for calculating BLAKE3 hashes, similar to Coreutils tools like b2sum or md5sum
Homepage: https://github.com/BLAKE3-team/BLAKE3/tree/master/b3sum
- Package: babl
Version: 0.1.110
Description: Dynamic pixel format translation library
Homepage: https://gegl.org/babl/
- Package: bacula-fd
Version: 15.0.2
Description: Bacula backup software
Homepage: https://www.bacula.org
- Package: bacula-fd-static
Version: 15.0.2
Description: Static libraries for bacula-fd
Homepage: https://www.bacula.org
- Package: badvpn-udpgw
Version: 1.999.130
Description: UDP gateway for BadVPN
Homepage: https://github.com/ambrop72/badvpn
- Package: barcode
Version: 0.99-4
Description: Tool to convert text strings to printed bars
Homepage: https://www.gnu.org/software/barcode/
- Package: base16384
Version: 2.3.1
Description: Encode binary to printable utf16be
Homepage: https://github.com/fumiama/base16384
- Package: bash
Version: 5.2.37
Description: A sh-compatible shell that incorporates useful features from the Korn shell (ksh) and C shell (csh)
Homepage: https://www.gnu.org/software/bash/
- Package: bash-completion
Version: 2.15.0
Description: Programmable completion for the bash shell
Homepage: https://github.com/scop/bash-completion
- Package: bastet
Version: 0.43.2-10
Description: Tetris clone with bastard block-choosing AI
Homepage: http://fph.altervista.org/prog/bastet.html
- Package: bat
Version: 0.24.0-2
Description: A cat(1) clone with wings
Homepage: https://github.com/sharkdp/bat
- Package: bc
Version: 1.07.1-1
Description: Arbitrary precision numeric processing language
Homepage: https://www.gnu.org/software/bc/
- Package: bc-gh
Version: 7.0.3
Description: Unix dc and POSIX bc with GNU and BSD extensions
Homepage: https://git.gavinhoward.com/gavin/bc
- Package: bdsup2sub
Version: 4.0.1
Description: A subtitle conversion tool for image based stream formats
Homepage: https://github.com/mjuhasz/BDSup2Sub
- Package: beanshell
Version: 2.1.1-1
Description: Small, free, embeddable, source level Java interpreter with object based scripting language features written in Java
Homepage: https://github.com/beanshell/beanshell
- Package: bed
Version: 0.2.7
Description: Binary editor written in GO
Homepage: https://github.com/itchyny/bed
- Package: bftpd
Version: "6.2"
Description: Small, easy-to-configure FTP server
Homepage: https://bftpd.sourceforge.net/
- Package: bgrep
Version: 1.0-3
Description: Binary string grep tool
Homepage: https://debugmo.de/2009/04/bgrep-a-binary-grep/
- Package: biboumi
Version: 9.0-4
Description: An XMPP gateway that connects to IRC servers and translates between the two protocols
Homepage: https://biboumi.louiz.org/
- Package: binaryen
Version: "119"
Description: Binaryen is a compiler and toolchain infrastructure library for WebAssembly
Homepage: https://github.com/WebAssembly/binaryen
- Package: binutils
Version: 2.43.1
Description: GNU Binutils (metapackage)
Homepage: https://www.gnu.org/software/binutils/
- Package: binutils-bin
Version: 2.43.1
Description: Collection of binary tools, the main ones being ld, the GNU linker, and as, the GNU assembler
Homepage: https://www.gnu.org/software/binutils/
- Package: binutils-cross
Version: 2.43.1
Description: GNU Binutils for cross build on the host (NOT for Termux)
Homepage: https://www.gnu.org/software/binutils/
- Package: binutils-gold
Version: 2.43.1
Description: gold linker
Homepage: https://www.gnu.org/software/binutils/
- Package: binutils-is-llvm
Version: 0.3-3
Description: Use llvm as binutils
Homepage: https://github.com/trentbuck/binutils-is-llvm
- Package: binutils-libs
Version: 2.43.1
Description: GNU Binutils libraries
Homepage: https://www.gnu.org/software/binutils/
- Package: bionic-host
Version: 8.0.0-r51-5
Description: bionic libc, libm, libdl and dynamic linker for ubuntu host
Homepage: https://android.googlesource.com/platform/bionic/
- Package: bison
Version: 3.8.2-3
Description: General-purpose parser generator
Homepage: https://www.gnu.org/software/bison/
- Package: bison-static
Version: 3.8.2-3
Description: Static libraries for bison
Homepage: https://www.gnu.org/software/bison/
- Package: bitcoin
Version: "28.0"
Description: Bitcoin Core
Homepage: https://bitcoincore.org/
- Package: bitlbee
Version: 3.6-1-0
Description: An IRC to other chat networks gateway
Homepage: https://www.bitlbee.org/
- Package: bk
Version: 0.6.0
Description: A terminal EPUB reader
Homepage: https://github.com/aeosynth/bk
- Package: blackbox
Version: "1:1.20220610"
Description: Safely store secrets in Git/Mercurial/Subversion
Homepage: https://github.com/StackExchange/blackbox
- Package: blade
Version: 0.0.86
Description: A simple, fast, clean and dynamic language
Homepage: https://bladelang.com/
- Package: blas-openblas
Version: 0.3.28
Description: OpenBLAS symlinks for BLAS/CBLAS/LAPACK/LAPACKE
Homepage: https://www.openblas.net
- Package: blink
Version: 1:1.1.0
Description: Tiny x86-64 Linux emulator
Homepage: https://justine.lol/blinkenlights/
- Package: blk-utils
Version: 2.40.2-2
Description: Utilities for handling block device attributes
Homepage: https://en.wikipedia.org/wiki/Util-linux
- Package: blogc
Version: 0.20.1
Description: A blog compiler
Homepage: https://blogc.rgm.io/
- Package: bmon
Version: 4.0-3
Description: Bandwidth monitor and rate estimator
Homepage: https://github.com/tgraf/bmon
- Package: boinc
Version: 8.0.4
Description: Open-source software for volunteer computing
Homepage: https://boinc.berkeley.edu/
- Package: boinctui
Version: 2.7.1
Description: curses based manager for Boinc client
Homepage: https://sourceforge.net/projects/boinctui/
- Package: bombadillo
Version: 2.4.0-2
Description: A non-web client for the terminal, supporting Gopher, Gemini and much more
Homepage: https://bombadillo.colorfield.space/
- Package: boost
Version: 1.83.0-3
Description: Free peer-reviewed portable C++ source libraries
Homepage: https://boost.org
- Package: boost-headers
Version: 1.83.0-3
Description: Boost header files
Homepage: https://boost.org
- Package: boost-static
Version: 1.83.0-3
Description: Static libraries for boost
Homepage: https://boost.org
- Package: bore
Version: 0.5.1
Description: Bore is a simple CLI tool for making tunnels to localhost
Homepage: https://github.com/ekzhang/bore
- Package: borgbackup
Version: 1.4.0-2
Description: Deduplicating and compressing backup program
Homepage: https://www.borgbackup.org/
- Package: botan3
Version: 3.5.0
Description: Crypto and TLS for Modern C++
Homepage: https://botan.randombit.net/
- Package: botan3-static
Version: 3.5.0
Description: Static libraries for botan3
Homepage: https://botan.randombit.net/
- Package: boxes
Version: 2.3.1
Description: A command line filter program which draws ASCII art boxes around your input text
Homepage: https://boxes.thomasjensen.com/
- Package: brainfuck
Version: 1:2.7.3
Description: Brainfuck Interpreter written in C
Homepage: https://github.com/fabianishere/brainfuck
- Package: brainfuck-static
Version: 1:2.7.3
Description: Static libraries for brainfuck
Homepage: https://github.com/fabianishere/brainfuck
- Package: brogue
Version: 1.14.1
Description: Roguelike dungeon crawling game (community edition)
Homepage: https://sites.google.com/site/broguegame/
- Package: brook
Version: "20240606"
Description: A cross-platform strong encryption and not detectable proxy. Zero-Configuration.
Homepage: https://github.com/txthinking/brook
- Package: broot
Version: 1.44.2
Description: A better way to navigate directories
Homepage: https://github.com/Canop/broot
- Package: brotli
Version: 1.1.0
Description: lossless compression algorithm and format (command line utility)
Homepage: https://github.com/google/brotli
- Package: brotli-static
Version: 1.0.9-1
Description: Static libraries for brotli
Homepage: https://github.com/google/brotli
- Package: bsd-finger
Version: 0.17-1
Description: User information lookup program
Homepage: https://packages.debian.org/sid/source/bsd-finger
- Package: bsd-games
Version: "1:3.3"
Description: Classic text mode games from UNIX folklore
Homepage: https://www.polyomino.org.uk/computer/software/bsd-games/
- Package: bsdtar
Version: 3.7.7
Description: The tar(1) and cpio(1) programs from FreeBSD, using libarchive
Homepage: https://www.libarchive.org/
- Package: btfs2
Version: 3.0.0
Description: Decentralized file system integrating with TRON network and Bittorrent network
Homepage: https://www.bittorrent.com/btfs/
- Package: buf
Version: 1.47.2
Description: A new way of working with Protocol Buffers
Homepage: https://buf.build
- Package: build-essential
Version: "4.1"
Description: A metapackage that installs essential development tools
Homepage: https://github.com/termux/termux-packages
- Package: busybox
Version: 1.36.1-2
Description: Tiny versions of many common UNIX utilities into a single small executable
Homepage: https://busybox.net/
- Package: bvi
Version: 1.4.2
Description: Binary file editor based on vi
Homepage: http://bvi.sourceforge.net/
- Package: byacc
Version: "20240109"
Description: byacc is generally conceded to be the best yacc variant available
Homepage: https://invisible-island.net/byacc/
- Package: byobu
Version: "6.12"
Description: Byobu is a GPLv3 open source text-based window manager and terminal multiplexer
Homepage: https://byobu.co/
- Package: bzip2
Version: 1.0.8-6
Description: Tools for working with bzip2 compression
Homepage: http://www.bzip.org/
- Package: c-ares
Version: 1.34.3
Description: Library for asynchronous DNS requests (including name resolves)
Homepage: https://c-ares.haxx.se
- Package: c-script
Version: "0.14"
Description: Compile and execute C scripts in one go!
Homepage: https://github.com/ryanmjacobs/c
- Package: c-toxcore
Version: 0.2.18-p20240317-0
Description: Backend library for the Tox protocol
Homepage: https://tox.chat
- Package: c-toxcore-static
Version: 0.2.18-p20240317-0
Description: Static libraries for c-toxcore
Homepage: https://tox.chat
- Package: ca-certificates
Version: 1:2024.09.24
Description: Common CA certificates
Homepage: https://curl.se/docs/caextract.html
- Package: ca-certificates-java
Version: 1:2024.09.24
Description: Common CA certificates (java keystore format)
Homepage: https://curl.se/docs/caextract.html
- Package: cabal-install
Version: 3.8.1.0
Description: The command-line interface for Haskell-Cabal and Hackage
Homepage: https://www.haskell.org/cabal/
- Package: cabextract
Version: "1.11"
Description: A program to extract Microsoft cabinet (.CAB) files
Homepage: https://www.cabextract.org.uk/
- Package: cadaver
Version: 0.24-3
Description: A command-line WebDAV client for Unix
Homepage: https://notroj.github.io/cadaver/
- Package: caddy
Version: 2.8.4
Description: Fast, cross-platform HTTP/2 web server
Homepage: https://caddyserver.com/
- Package: calc
Version: 2.15.1.0
Description: Arbitrary precision console calculator
Homepage: http://www.isthe.com/chongo/tech/comp/calc/
- Package: calcurse
Version: 4.8.1-1
Description: calcurse is a calendar and scheduling application for the command line
Homepage: https://calcurse.org/
- Package: calcurse-caldav
Version: 4.8.1-1
Description: Sync calcurse with remote caldav calendar
Homepage: https://calcurse.org/
- Package: capnproto
Version: 1.0.2
Description: Data interchange format and capability-based RPC system
Homepage: https://capnproto.org/
- Package: capstone
Version: 5.0.3
Description: Lightweight multi-platform, multi-architecture disassembly framework
Homepage: https://www.capstone-engine.org/
- Package: capstone-static
Version: 5.0.3
Description: Static libraries for capstone
Homepage: https://www.capstone-engine.org/
- Package: cargo-c
Version: 0.10.7
Description: Cargo C-ABI helpers
Homepage: https://github.com/lu-zero/cargo-c
- Package: catdoc
Version: 0.95-1
Description: Program which reads MS-Word file and prints readable ASCII text to stdout
Homepage: http://www.wagner.pp.ru/~vitus/software/catdoc/
- Package: catgirl
Version: 2.2a
Description: A TLS-only terminal IRC client
Homepage: https://git.causal.agency/catgirl
- Package: catimg
Version: 2.7.0
Description: Renders images in the terminal
Homepage: https://posva.net/shell/retro/bash/2013/05/27/catimg
- Package: cava
Version: 0.10.3
Description: Console-based Audio Visualizer. Works with MPD and Pulseaudio
Homepage: https://github.com/karlstav/cava
- Package: cavez-of-phear
Version: 0.6.1-1
Description: A Boulder Dash like game for consoles/terminals
Homepage: https://github.com/AMDmi3/cavezofphear
- Package: cavif-rs
Version: 1.5.6
Description: AVIF image creator in pure Rust
Homepage: https://lib.rs/cavif
- Package: cboard
Version: 0.7.5-4
Description: PGN browser, editor and chess engine frontend
Homepage: https://benkibbey.wordpress.com/cboard/
- Package: cbonsai
Version: 1.3.1-1
Description: Grow bonsai trees in your terminal
Homepage: https://gitlab.com/jallbrit/cbonsai
- Package: cc65
Version: "2.19"
Description: A free compiler for 6502 based system.
Homepage: https://cc65.github.io/
- Package: ccache
Version: 4.10.2-1
Description: Compiler cache for fast recompilation of C/C++ code
Homepage: https://ccache.samba.org
- Package: cccc
Version: 3.2.0
Description: Source code counter and metrics tool for C++, C, and Java
Homepage: https://sarnold.github.io/cccc/
- Package: ccextractor
Version: 0.94-4
Description: A tool used to produce subtitles for TV recordings
Homepage: https://ccextractor.org/
- Package: ccls
Version: "0.20240505"
Description: C/C++/ObjC language server
Homepage: https://github.com/MaskRay/ccls
- Package: ccrypt
Version: "1.11"
Description: Secure encryption and decryption of files and streams utility
Homepage: http://ccrypt.sourceforge.net/
- Package: cec-client
Version: 6.0.2-1
Description: Client applications for libCEC
Homepage: http://libcec.pulse-eight.com/
- Package: ceu-lang
Version: 2019.07.17-2
Description: The Structured Synchronous Reactive Programming Language Céu
Homepage: https://github.com/ceu-lang/ceu
- Package: cfengine
Version: 1:3.24.0
Description: CFEngine is a configuration management technology
Homepage: https://cfengine.com/
- Package: cfengine-static
Version: 1:3.24.0
Description: Static libraries for cfengine
Homepage: https://cfengine.com/
- Package: cfm
Version: 1.2.0-3
Description: A basic file manager that runs inside a terminal, designed for Linux. Its fully responsive and incredibly fast.
Homepage: https://github.com/0l1v3rr/cli-file-manager
- Package: cgal
Version: 6.0.1
Description: Computational Geometry Algorithms Library
Homepage: https://www.cgal.org/
- Package: cgdb
Version: 0.8.0
Description: A lightweight curses (terminal-based) interface to the GNU Debugger (GDB)
Homepage: https://cgdb.github.io/
- Package: cgif
Version: 0.4.1
Description: A fast and lightweight GIF encoding library
Homepage: https://github.com/dloebl/cgif
- Package: chafa
Version: 1.14.5
Description: Image-to-text converter supporting a wide range of symbols, etc.
Homepage: https://hpjansson.org/chafa/
- Package: chafa-static
Version: 1.14.5
Description: Static libraries for chafa
Homepage: https://hpjansson.org/chafa/
- Package: check
Version: 0.15.2-2
Description: A unit testing framework for C
Homepage: https://libcheck.github.io/check
- Package: check-static
Version: 0.15.2-2
Description: Static libraries for check
Homepage: https://libcheck.github.io/check
- Package: chezmoi
Version: 2.54.0
Description: Manage your dotfiles across multiple machines
Homepage: https://chezmoi.io
- Package: chicken
Version: 5.4.0
Description: A feature rich Scheme compiler and interpreter
Homepage: https://www.call-cc.org
- Package: chicken-static
Version: 5.4.0
Description: Static libraries for chicken
Homepage: https://www.call-cc.org
- Package: choose
Version: 1.3.6
Description: A human-friendly and fast alternative to cut and (sometimes) awk
Homepage: https://github.com/theryangeary/choose
- Package: chromaprint
Version: 1.5.1-p20221217-1
Description: C library for generating audio fingerprints used by AcoustID
Homepage: https://acoustid.org/chromaprint
- Package: chrony
Version: 4.6.1
Description: chrony is an implementation of the Network Time Protocol (NTP)
Homepage: https://chrony-project.org/
- Package: ciso
Version: 1.0.2-1
Description: PSP ISO compression tool
Homepage: https://github.com/jamie/ciso
- Package: ckermit
Version: 9.0.302-2
Description: A combined network and serial communication software package
Homepage: https://www.kermitproject.org/ckermit.html
- Package: clamav
Version: 1.4.1
Description: Anti-virus toolkit for Unix
Homepage: https://www.clamav.net/
- Package: clamav-static
Version: 1.4.1
Description: Static libraries for clamav
Homepage: https://www.clamav.net/
- Package: clang
Version: 19.1.4
Description: C language frontend for LLVM
Homepage: https://clang.llvm.org/
- Package: clblast
Version: 1.6.3
Description: Tuned OpenCL BLAS
Homepage: https://github.com/CNugteren/CLBlast
- Package: cliaoke
Version: 0.2.4-4
Description: Command line karaoke
Homepage: https://github.com/jessfraz/cliaoke
- Package: clidle
Version: 2022.05.25-2
Description: Play Wordle over SSH
Homepage: https://github.com/ajeetdsouza/clidle
- Package: clifm
Version: "1.22"
Description: 'The shell-like, command line terminal file manager: simple, fast, extensible, and lightweight as hell'
Homepage: https://github.com/leo-arch/clifm
- Package: clinfo
Version: 3.0.23.01.25
Description: Print all known information about all available OpenCL platforms and devices in the system
Homepage: https://github.com/Oblomov/clinfo
- Package: clipp
Version: 1.2.3-1
Description: Command line interfaces for modern C++
Homepage: https://github.com/muellan/clipp
- Package: cloneit
Version: "20240728"
Description: A cli tool to download specific GitHub directories or files
Homepage: https://github.com/alok8bb/cloneit
- Package: cloudflared
Version: 2024.11.1
Description: A tunneling daemon that proxies traffic from the Cloudflare network to your origins
Homepage: https://github.com/cloudflare/cloudflared
- Package: clpeak
Version: 1.1.2-3
Description: A tool which profiles OpenCL devices to find their peak capacities
Homepage: https://github.com/krrishnarraj/clpeak
- Package: clvk
Version: 0.0.20241126.190426
Description: Experimental implementation of OpenCL on Vulkan
Homepage: https://github.com/kpet/clvk
- Package: cmake
Version: 3.31.1
Description: Family of tools designed to build, test and package software
Homepage: https://cmake.org/
- Package: cmake-curses-gui
Version: 3.31.1
Description: Curses based user interface for CMake (ccmake)
Homepage: https://cmake.org/
- Package: cmark
Version: 0.31.1
Description: CommonMark parsing and rendering program
Homepage: https://github.com/commonmark/cmark
- Package: cmark-static
Version: 0.31.1
Description: Static libraries for cmark
Homepage: https://github.com/commonmark/cmark
- Package: cmatrix
Version: "2.0"
Description: Command producing a Matrix-style animation
Homepage: https://github.com/abishekvashok/cmatrix
- Package: cmocka
Version: 1.1.7
Description: cmocka is an unit testing framework for C
Homepage: https://cmocka.org/
- Package: cmus
Version: 2.12.0-2
Description: Small, fast and powerful console music player
Homepage: https://cmus.github.io/
- Package: cmusfm
Version: 0.5.0
Description: Last.fm standalone scrobbler for the cmus music player
Homepage: https://github.com/Arkq/cmusfm
- Package: codecrypt
Version: 1.8-9
Description: The post-quantum cryptography tool
Homepage: http://e-x-a.org/codecrypt/
- Package: coinor-cbc
Version: 2.10.12
Description: An open-source mixed integer linear programming solver
Homepage: https://github.com/coin-or/Cbc
- Package: coinor-cbc-static
Version: 2.10.12
Description: Static libraries for coinor-cbc
Homepage: https://github.com/coin-or/Cbc
- Package: coinor-clp
Version: 1:1.17.10
Description: An open-source linear programming solver
Homepage: https://github.com/coin-or/Clp