forked from pkgforge/pkgcache
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMETADATA.json
3420 lines (3420 loc) · 219 KB
/
METADATA.json
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
[
{
"host": "aarch64-Linux",
"main": [
{
"name": "86box.appimage",
"bin_id": "net._86box._86Box",
"bin_name": "86box",
"description": "Emulator of x86-based machines",
"note": "Officially Created AppImage. Check/Report @ https://github.com/86Box/86Box. You need to download ROMS (https://86box.readthedocs.io/en/latest/usage/roms.html)",
"version": "v4.2.1",
"download_url": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/aarch64-Linux/86box.appimage",
"size": "54.23 MB",
"bsum": "7e6c866b9ed6bbd23aa6b45d3451ebc487045d20ea469ffdda7ae82b229782ca",
"shasum": "b2a0829f3052b00dd519478296bf38deef69d085d91480dd113862bafe71c2b7",
"build_date": "2024-11-07T07:56:12",
"repology": "https://pkgcache.pkgforge.dev/aarch64/86box.appimage.repology.json",
"src_url": "https://github.com/86Box/86Box",
"web_url": "https://86box.readthedocs.io",
"build_script": "https://github.com/pkgforge/pkgcache/blob/main/.github/scripts/aarch64-Linux/pkgs/86box.appimage.sh",
"build_log": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/aarch64-Linux/86box.appimage.log",
"appstream": "https://pkgcache.pkgforge.dev/aarch64/86box.appimage.appdata.xml",
"category": "Emulator",
"desktop": "https://pkgcache.pkgforge.dev/aarch64/86box.appimage.desktop",
"icon": "https://pkgcache.pkgforge.dev/aarch64/86box.appimage.icon.png",
"screenshots": [
"https://pkg.pkgforge.dev/aarch64/86box.appimage.screen_1.png"
],
"provides": "",
"snapshots": [
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/1d47ce84222290d82fa543c9cc616ad944c41265/aarch64-Linux/86box.appimage#[2024-11-06T08:15:27]",
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/9545d4c5bc116058fea92b7827241cca0fa0eb0e/aarch64-Linux/86box.appimage#[2024-11-06T05:21:35]"
]
},
{
"name": "browservice.appimage",
"bin_id": "org.browservice.browservice",
"bin_name": "browservice",
"description": "Browse the modern web on historical browsers",
"note": "Officially Created AppImage. Check/Report @ https://github.com/ttalvitie/browservice",
"version": "v0.9.10.0",
"download_url": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/aarch64-Linux/browservice.appimage",
"size": "242.63 MB",
"bsum": "567df3becb573b4aa336a3107fca6ad6847aaceeaa501b9eeee54ca64bc1094e",
"shasum": "fd1755a8f1f9af8df32b8f74f84f99acf8fb021d046b4da371a33437d305fa2c",
"build_date": "2024-11-07T07:57:00",
"repology": "",
"src_url": "https://github.com/ttalvitie/browservice",
"web_url": "https://github.com/ttalvitie/browservice",
"build_script": "https://github.com/pkgforge/pkgcache/blob/main/.github/scripts/aarch64-Linux/pkgs/browservice.appimage.sh",
"build_log": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/aarch64-Linux/browservice.appimage.log",
"appstream": "",
"category": "WebBrowser",
"desktop": "https://pkgcache.pkgforge.dev/aarch64/browservice.appimage.desktop",
"icon": "https://pkgcache.pkgforge.dev/aarch64/browservice.appimage.icon.png",
"screenshots": [
""
],
"provides": "",
"snapshots": [
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/1d47ce84222290d82fa543c9cc616ad944c41265/aarch64-Linux/browservice.appimage#[2024-11-06T08:15:27]"
]
},
{
"name": "chromium.dwfs.appbundle",
"bin_id": "org.chromium.Chromium",
"bin_name": "chromium",
"description": "Open source web browser from Google",
"note": "AppBundles: https://github.com/xplshn/pelf. More: https://l.ajam.dev/appbundles",
"version": "130.0.6723.116",
"download_url": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/aarch64-Linux/chromium.dwfs.appbundle",
"size": "231.1 MB",
"bsum": "b5acb329dae31fdced8954f4d997e46d41facd614e34995f7998dfe6358dc12a",
"shasum": "a42aab7ebcd3fffcea623cc0173236380973ba4ddf329e81aa99b1123cf2ab3f",
"build_date": "2024-11-07T07:58:19",
"repology": "https://pkgcache.pkgforge.dev/aarch64/chromium.dwfs.appbundle.repology.json",
"src_url": "https://chromium.googlesource.com/chromium/src.git",
"web_url": "https://www.chromium.org",
"build_script": "https://github.com/pkgforge/pkgcache/blob/main/.github/scripts/aarch64-Linux/pkgs/chromium.appbundle.sh",
"build_log": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/aarch64-Linux/chromium.appbundle.log",
"appstream": "",
"category": "WebBrowser",
"desktop": "",
"icon": "https://pkgcache.pkgforge.dev/aarch64/chromium.dwfs.appbundle.icon.png",
"screenshots": [
"https://pkg.pkgforge.dev/aarch64/chromium.appbundle.screen_1.png",
"https://pkg.pkgforge.dev/aarch64/chromium.appbundle.screen_1.png",
"https://pkg.pkgforge.dev/aarch64/chromium.appbundle.screen_2.png",
"https://pkg.pkgforge.dev/aarch64/chromium.appbundle.screen_3.png",
"https://pkg.pkgforge.dev/aarch64/chromium.appbundle.screen_4.png",
"https://pkg.pkgforge.dev/aarch64/chromium.appbundle.screen_5.png",
"https://pkg.pkgforge.dev/aarch64/chromium.appbundle.screen_6.png"
],
"provides": "",
"snapshots": [
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/1d47ce84222290d82fa543c9cc616ad944c41265/aarch64-Linux/chromium.dwfs.appbundle#[2024-11-06T08:15:27]",
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/9545d4c5bc116058fea92b7827241cca0fa0eb0e/aarch64-Linux/chromium.dwfs.appbundle#[2024-11-06T05:21:35]"
]
},
{
"name": "chromium-alpine.flatimage",
"bin_id": "org.chromium.Chromium",
"bin_name": "chromium",
"description": "Open source web browser from Google",
"note": "FlatImages: https://github.com/ruanformigoni/flatimage. More: https://l.ajam.dev/flatimages",
"version": "130.0.6723.116",
"download_url": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/aarch64-Linux/chromium-alpine.flatimage",
"size": "232.06 MB",
"bsum": "75fe3284c5328db481086b16449f6da8eda321a72df88b0fcb5f86970ba52af5",
"shasum": "826dc850990dcfac20a4552b4f112801b90120437569fd8b61e2070b57b94950",
"build_date": "2024-11-07T07:59:55",
"repology": "https://pkgcache.pkgforge.dev/aarch64/chromium-alpine.flatimage.repology.json",
"src_url": "https://chromium.googlesource.com/chromium/src.git",
"web_url": "https://www.chromium.org",
"build_script": "https://github.com/pkgforge/pkgcache/blob/main/.github/scripts/aarch64-Linux/pkgs/chromium.flatimage.sh",
"build_log": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/aarch64-Linux/chromium.flatimage.log",
"appstream": "",
"category": "WebBrowser",
"desktop": "",
"icon": "",
"screenshots": [
"https://pkg.pkgforge.dev/aarch64/chromium.flatimage.screen_1.png",
"https://pkg.pkgforge.dev/aarch64/chromium.flatimage.screen_2.png",
"https://pkg.pkgforge.dev/aarch64/chromium.flatimage.screen_3.png",
"https://pkg.pkgforge.dev/aarch64/chromium.flatimage.screen_4.png",
"https://pkg.pkgforge.dev/aarch64/chromium.flatimage.screen_5.png",
"https://pkg.pkgforge.dev/aarch64/chromium.flatimage.screen_6.png"
],
"provides": "",
"snapshots": [
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/1d47ce84222290d82fa543c9cc616ad944c41265/aarch64-Linux/chromium-alpine.flatimage#[2024-11-06T08:15:27]",
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/9545d4c5bc116058fea92b7827241cca0fa0eb0e/aarch64-Linux/chromium-alpine.flatimage#[2024-11-06T05:21:35]"
]
},
{
"name": "chromium.nixappimage",
"bin_id": "org.chromium.Chromium",
"bin_name": "chromium",
"description": "Open source web browser from Google",
"note": "NixAppImages: https://l.ajam.dev/nix-appimage",
"version": "130.0.6723.91",
"download_url": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/aarch64-Linux/chromium.nixappimage",
"size": "425.35 MB",
"bsum": "b692add01e0cf1742955c73a35d5fb3c64fbfdae28cf2a2f26d150226d803b5b",
"shasum": "a4e0759998ce1b8a3a3386ab84ee2e2a89ca9d58cd9b922e10d2527bceda7ec1",
"build_date": "2024-11-07T08:03:47",
"repology": "https://pkgcache.pkgforge.dev/aarch64/chromium.nixappimage.repology.json",
"src_url": "https://chromium.googlesource.com/chromium/src.git",
"web_url": "https://www.chromium.org",
"build_script": "https://github.com/pkgforge/pkgcache/blob/main/.github/scripts/aarch64-Linux/pkgs/chromium.nixappimage.sh",
"build_log": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/aarch64-Linux/chromium.nixappimage.log",
"appstream": "",
"category": "WebBrowser",
"desktop": "https://pkgcache.pkgforge.dev/aarch64/chromium.nixappimage.desktop",
"icon": "https://pkgcache.pkgforge.dev/aarch64/chromium.nixappimage.icon.png",
"screenshots": [
"https://pkg.pkgforge.dev/aarch64/chromium.nixappimage.screen_1.png",
"https://pkg.pkgforge.dev/aarch64/chromium.nixappimage.screen_1.png",
"https://pkg.pkgforge.dev/aarch64/chromium.nixappimage.screen_2.png",
"https://pkg.pkgforge.dev/aarch64/chromium.nixappimage.screen_3.png",
"https://pkg.pkgforge.dev/aarch64/chromium.nixappimage.screen_4.png",
"https://pkg.pkgforge.dev/aarch64/chromium.nixappimage.screen_5.png",
"https://pkg.pkgforge.dev/aarch64/chromium.nixappimage.screen_6.png"
],
"provides": "",
"snapshots": [
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/1d47ce84222290d82fa543c9cc616ad944c41265/aarch64-Linux/chromium.nixappimage#[2024-11-06T08:15:27]",
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/9545d4c5bc116058fea92b7827241cca0fa0eb0e/aarch64-Linux/chromium.nixappimage#[2024-11-06T05:21:35]"
]
},
{
"name": "engrampa.dwfs.appbundle",
"bin_id": "org.mate.engrampa",
"bin_name": "engrampa",
"description": "A file archiver for MATE",
"note": "AppBundles: https://github.com/xplshn/pelf. More: https://l.ajam.dev/appbundles",
"version": "1.28.1",
"download_url": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/aarch64-Linux/engrampa.dwfs.appbundle",
"size": "16.94 MB",
"bsum": "345e95e29daef583abfcc1a85fcea905ef01ae351f9ab362200537d04a8af94f",
"shasum": "a92e2c8a917f29bb2d398b23dd850eeb3b711dec74bda9ca18e63f5077c757b2",
"build_date": "2024-11-07T08:04:30",
"repology": "https://pkgcache.pkgforge.dev/aarch64/engrampa.dwfs.appbundle.repology.json",
"src_url": "https://github.com/mate-desktop/engrampa",
"web_url": "https://wiki.mate-desktop.org/mate-desktop/applications/engrampa/",
"build_script": "https://github.com/pkgforge/pkgcache/blob/main/.github/scripts/aarch64-Linux/pkgs/engrampa.appbundle.sh",
"build_log": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/aarch64-Linux/engrampa.appbundle.log",
"appstream": "",
"category": "WebBrowser",
"desktop": "",
"icon": "https://pkgcache.pkgforge.dev/aarch64/engrampa.dwfs.appbundle.icon.png",
"screenshots": [
"https://pkg.pkgforge.dev/aarch64/engrampa.appbundle.screen_1.png",
"https://pkg.pkgforge.dev/aarch64/engrampa.appbundle.screen_2.png",
"https://pkg.pkgforge.dev/aarch64/engrampa.appbundle.screen_3.png"
],
"provides": "",
"snapshots": [
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/1d47ce84222290d82fa543c9cc616ad944c41265/aarch64-Linux/engrampa.dwfs.appbundle#[2024-11-06T08:15:27]",
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/9545d4c5bc116058fea92b7827241cca0fa0eb0e/aarch64-Linux/engrampa.dwfs.appbundle#[2024-11-06T05:21:35]"
]
},
{
"name": "falkon.dwfs.appbundle",
"bin_id": "org.kde.falkon.desktop",
"bin_name": "falkon",
"description": "A KDE web browser with the QtWebEngine Rendering Engine",
"note": "AppBundles: https://github.com/xplshn/pelf. More: https://l.ajam.dev/appbundles",
"version": "24.08.2",
"download_url": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/aarch64-Linux/falkon.dwfs.appbundle",
"size": "282.94 MB",
"bsum": "7d2debdb0e9b7497aafa98d54c21ef75cc7c33145cd09bfb4850d866b18d5e30",
"shasum": "3b41829ff7d42f941604083d656cc542a6fa1f873dd09fd433245256b024cc55",
"build_date": "2024-11-07T08:06:09",
"repology": "https://pkgcache.pkgforge.dev/aarch64/falkon.dwfs.appbundle.repology.json",
"src_url": "https://invent.kde.org/network/falkon",
"web_url": "https://www.falkon.org",
"build_script": "https://github.com/pkgforge/pkgcache/blob/main/.github/scripts/aarch64-Linux/pkgs/falkon.appbundle.sh",
"build_log": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/aarch64-Linux/falkon.appbundle.log",
"appstream": "",
"category": "WebBrowser",
"desktop": "",
"icon": "https://pkgcache.pkgforge.dev/aarch64/falkon.dwfs.appbundle.icon.png",
"screenshots": [
"https://pkg.pkgforge.dev/aarch64/falkon.appbundle.screen_1.png",
"https://pkg.pkgforge.dev/aarch64/falkon.appbundle.screen_1.png",
"https://pkg.pkgforge.dev/aarch64/falkon.appbundle.screen_2.png",
"https://pkg.pkgforge.dev/aarch64/falkon.appbundle.screen_3.png",
"https://pkg.pkgforge.dev/aarch64/falkon.appbundle.screen_4.png",
"https://pkg.pkgforge.dev/aarch64/falkon.appbundle.screen_5.png",
"https://pkg.pkgforge.dev/aarch64/falkon.appbundle.screen_6.png"
],
"provides": "",
"snapshots": [
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/1d47ce84222290d82fa543c9cc616ad944c41265/aarch64-Linux/falkon.dwfs.appbundle#[2024-11-06T08:15:27]",
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/9545d4c5bc116058fea92b7827241cca0fa0eb0e/aarch64-Linux/falkon.dwfs.appbundle#[2024-11-06T05:21:35]"
]
},
{
"name": "firefox.dwfs.appbundle",
"bin_id": "org.mozilla.firefox",
"bin_name": "firefox",
"description": "A web browser built from Firefox source tree",
"note": "AppBundles: https://github.com/xplshn/pelf. More: https://l.ajam.dev/appbundles",
"version": "132.0.1",
"download_url": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/aarch64-Linux/firefox.dwfs.appbundle",
"size": "189.06 MB",
"bsum": "12812a54120c4cd7d0fc01fe4861b7fbe9bc556aa62e75715c8e74f963790b57",
"shasum": "7f098db24f5410ea9e82a23ca7735f9caaee16e23dff46e6f28d273d4a783a6f",
"build_date": "2024-11-07T08:07:17",
"repology": "https://pkgcache.pkgforge.dev/aarch64/firefox.dwfs.appbundle.repology.json",
"src_url": "https://hg.mozilla.org/mozilla-central",
"web_url": "http://www.mozilla.com",
"build_script": "https://github.com/pkgforge/pkgcache/blob/main/.github/scripts/aarch64-Linux/pkgs/firefox.appbundle.sh",
"build_log": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/aarch64-Linux/firefox.appbundle.log",
"appstream": "",
"category": "WebBrowser",
"desktop": "",
"icon": "https://pkgcache.pkgforge.dev/aarch64/firefox.dwfs.appbundle.icon.png",
"screenshots": [
"https://pkg.pkgforge.dev/aarch64/firefox.appbundle.screen_1.png",
"https://pkg.pkgforge.dev/aarch64/firefox.appbundle.screen_2.png",
"https://pkg.pkgforge.dev/aarch64/firefox.appbundle.screen_3.png"
],
"provides": "",
"snapshots": [
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/1d47ce84222290d82fa543c9cc616ad944c41265/aarch64-Linux/firefox.dwfs.appbundle#[2024-11-06T08:15:27]",
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/9545d4c5bc116058fea92b7827241cca0fa0eb0e/aarch64-Linux/firefox.dwfs.appbundle#[2024-11-06T05:21:35]"
]
},
{
"name": "imagemagick.dwfs.appbundle",
"bin_id": "xxx.org.imagemagick",
"bin_name": "magick",
"description": "FOSS suite for editing and manipulating Digital Images & Files",
"note": "AppBundles: https://github.com/xplshn/pelf. More: https://l.ajam.dev/appbundles",
"version": "7.1.1.39",
"download_url": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/aarch64-Linux/imagemagick.dwfs.appbundle",
"size": "12.37 MB",
"bsum": "9e224f438ba7060b7f7095564749068f14d06b586e0cf2c229c383baf5e3ca22",
"shasum": "d0c826de11b01ed2cfb2e80da719494aadb162eeb34ca0659c569842fef82a2a",
"build_date": "2024-11-07T08:09:09",
"repology": "https://pkgcache.pkgforge.dev/aarch64/imagemagick.dwfs.appbundle.repology.json",
"src_url": "https://github.com/ImageMagick/ImageMagick",
"web_url": "https://imagemagick.org",
"build_script": "https://github.com/pkgforge/pkgcache/blob/main/.github/scripts/aarch64-Linux/pkgs/imagemagick.appbundle.sh",
"build_log": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/aarch64-Linux/imagemagick.appbundle.log",
"appstream": "",
"category": "ConsoleOnly,Graphics,ImageProcessing,Utility",
"desktop": "",
"icon": "https://pkgcache.pkgforge.dev/aarch64/imagemagick.appbundle.icon.png",
"screenshots": [
""
],
"provides": "",
"snapshots": [
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/1d47ce84222290d82fa543c9cc616ad944c41265/aarch64-Linux/imagemagick.dwfs.appbundle#[2024-11-06T08:15:27]",
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/9545d4c5bc116058fea92b7827241cca0fa0eb0e/aarch64-Linux/imagemagick.dwfs.appbundle#[2024-11-06T05:21:35]"
]
},
{
"name": "librewolf-arch.flatimage",
"bin_id": "io.gitlab.librewolf-community",
"bin_name": "librewolf",
"description": "A custom version of Firefox, focused on privacy, security and freedom",
"note": "FlatImages: https://github.com/ruanformigoni/flatimage. More: https://l.ajam.dev/flatimages",
"version": "132.0",
"download_url": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/aarch64-Linux/librewolf-arch.flatimage",
"size": "575.93 MB",
"bsum": "2eb66c4d88ca6b087fd64b806d8871efda5f7725a15e6b00eb8c2f22fc605e0c",
"shasum": "b5bb76fbbf3d7368b0d5fe666027527ef63b87a4993389373e5a2293e22d72b0",
"build_date": "2024-11-07T08:14:03",
"repology": "https://pkgcache.pkgforge.dev/aarch64/librewolf-arch.flatimage.repology.json",
"src_url": "https://codeberg.org/librewolf/source",
"web_url": "https://librewolf.net",
"build_script": "https://github.com/pkgforge/pkgcache/blob/main/.github/scripts/aarch64-Linux/pkgs/librewolf.flatimage.sh",
"build_log": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/aarch64-Linux/librewolf.flatimage.log",
"appstream": "",
"category": "WebBrowser,Security",
"desktop": "",
"icon": "https://pkgcache.pkgforge.dev/aarch64/librewolf.flatimage.icon.png",
"screenshots": [
"https://pkg.pkgforge.dev/aarch64/librewolf.flatimage.screen_1.png",
"https://pkg.pkgforge.dev/aarch64/librewolf.flatimage.screen_2.png",
"https://pkg.pkgforge.dev/aarch64/librewolf.flatimage.screen_3.png",
"https://pkg.pkgforge.dev/aarch64/librewolf.flatimage.screen_4.png",
"https://pkg.pkgforge.dev/aarch64/librewolf.flatimage.screen_5.png"
],
"provides": "",
"snapshots": [
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/1d47ce84222290d82fa543c9cc616ad944c41265/aarch64-Linux/librewolf-arch.flatimage#[2024-11-06T08:15:27]",
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/9545d4c5bc116058fea92b7827241cca0fa0eb0e/aarch64-Linux/librewolf-arch.flatimage#[2024-11-06T05:21:35]"
]
},
{
"name": "mousepad.dwfs.appbundle",
"bin_id": "org.xfce.mousepad",
"bin_name": "mousepad",
"description": "An easy-to-use, Fast & Simple Editor",
"note": "AppBundles: https://github.com/xplshn/pelf. More: https://l.ajam.dev/appbundles",
"version": "0.6.3",
"download_url": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/aarch64-Linux/mousepad.dwfs.appbundle",
"size": "17.54 MB",
"bsum": "bc26acfa284565a9357ff6fc8d8b8ee9ede42fcbf9a4c9924412fa5e9a547364",
"shasum": "1e05f9da7ad7f00ef7ee8540de0e4def00e986939747b5613297ddf8a9c24df6",
"build_date": "2024-11-07T08:14:40",
"repology": "https://pkgcache.pkgforge.dev/aarch64/mousepad.dwfs.appbundle.repology.json",
"src_url": "https://gitlab.xfce.org/apps/mousepad",
"web_url": "https://docs.xfce.org/apps/mousepad/start",
"build_script": "https://github.com/pkgforge/pkgcache/blob/main/.github/scripts/aarch64-Linux/pkgs/mousepad.appbundle.sh",
"build_log": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/aarch64-Linux/mousepad.appbundle.log",
"appstream": "",
"category": "TextEditor",
"desktop": "",
"icon": "https://pkgcache.pkgforge.dev/aarch64/mousepad.dwfs.appbundle.icon.png",
"screenshots": [
"https://pkg.pkgforge.dev/aarch64/mousepad.appbundle.screen_1.png",
"https://pkg.pkgforge.dev/aarch64/mousepad.appbundle.screen_1.png",
"https://pkg.pkgforge.dev/aarch64/mousepad.appbundle.screen_2.png",
"https://pkg.pkgforge.dev/aarch64/mousepad.appbundle.screen_3.png",
"https://pkg.pkgforge.dev/aarch64/mousepad.appbundle.screen_4.png",
"https://pkg.pkgforge.dev/aarch64/mousepad.appbundle.screen_5.png"
],
"provides": "",
"snapshots": [
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/1d47ce84222290d82fa543c9cc616ad944c41265/aarch64-Linux/mousepad.dwfs.appbundle#[2024-11-06T08:15:27]",
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/9545d4c5bc116058fea92b7827241cca0fa0eb0e/aarch64-Linux/mousepad.dwfs.appbundle#[2024-11-06T05:21:35]"
]
},
{
"name": "pcmanfm.dwfs.appbundle",
"bin_id": "org.lxqt-project.pcmanfm",
"bin_name": "pcmanfm",
"description": "Extremely fast and lightweight file manager",
"note": "AppBundles: https://github.com/xplshn/pelf. More: https://l.ajam.dev/appbundles",
"version": "1.3.2",
"download_url": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/aarch64-Linux/pcmanfm.dwfs.appbundle",
"size": "17.16 MB",
"bsum": "a1278d20bef19ca398b31ca9b93b6dfb151415176f43c58ed680ef42283a8cbc",
"shasum": "fbdc5c1b4030805af1f6fff1e796306f0f640047cec42d4ee3be6295a5b24d7a",
"build_date": "2024-11-07T08:15:56",
"repology": "https://pkgcache.pkgforge.dev/aarch64/pcmanfm.dwfs.appbundle.repology.json",
"src_url": "https://github.com/lxde/pcmanfm",
"web_url": "https://github.com/lxde/pcmanfm",
"build_script": "https://github.com/pkgforge/pkgcache/blob/main/.github/scripts/aarch64-Linux/pkgs/pcmanfm.appbundle.sh",
"build_log": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/aarch64-Linux/pcmanfm.appbundle.log",
"appstream": "",
"category": "Core,FileManager",
"desktop": "",
"icon": "",
"screenshots": [
""
],
"provides": "",
"snapshots": [
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/1d47ce84222290d82fa543c9cc616ad944c41265/aarch64-Linux/pcmanfm.dwfs.appbundle#[2024-11-06T08:15:27]",
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/9545d4c5bc116058fea92b7827241cca0fa0eb0e/aarch64-Linux/pcmanfm.dwfs.appbundle#[2024-11-06T05:21:35]"
]
},
{
"name": "ppsspp.dwfs.appbundle",
"bin_id": "org.ppsspp.PPSSPP",
"bin_name": "ppsspp",
"description": "A Fast and Portable PSP emulator",
"note": "AppBundles: https://github.com/xplshn/pelf. More: https://l.ajam.dev/appbundles",
"version": "1.17.1",
"download_url": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/aarch64-Linux/ppsspp.dwfs.appbundle",
"size": "157.71 MB",
"bsum": "7d7ababfcff54953dc546b4d53fca311971fa4fe97f614b17868e44d5019bf70",
"shasum": "2af39d6e2db06ced23a9721762fed6202b37319b5d5f6bb5537b62c2e12fd85c",
"build_date": "2024-11-07T08:16:59",
"repology": "https://pkgcache.pkgforge.dev/aarch64/ppsspp.dwfs.appbundle.repology.json",
"src_url": "https://github.com/hrydgard/ppsspp",
"web_url": "https://www.ppsspp.org",
"build_script": "https://github.com/pkgforge/pkgcache/blob/main/.github/scripts/aarch64-Linux/pkgs/ppsspp.appbundle.sh",
"build_log": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/aarch64-Linux/ppsspp.appbundle.log",
"appstream": "",
"category": "Emulator,Game",
"desktop": "",
"icon": "https://pkgcache.pkgforge.dev/aarch64/ppsspp.dwfs.appbundle.icon.png",
"screenshots": [
"https://pkg.pkgforge.dev/aarch64/ppsspp.appbundle.screen_1.png",
"https://pkg.pkgforge.dev/aarch64/ppsspp.appbundle.screen_2.png",
"https://pkg.pkgforge.dev/aarch64/ppsspp.appbundle.screen_3.png",
"https://pkg.pkgforge.dev/aarch64/ppsspp.appbundle.screen_4.png",
"https://pkg.pkgforge.dev/aarch64/ppsspp.appbundle.screen_5.png",
"https://pkg.pkgforge.dev/aarch64/ppsspp.appbundle.screen_6.png",
"https://pkg.pkgforge.dev/aarch64/ppsspp.appbundle.screen_7.png",
"https://pkg.pkgforge.dev/aarch64/ppsspp.appbundle.screen_8.png",
"https://pkg.pkgforge.dev/aarch64/ppsspp.appbundle.screen_9.png",
"https://pkg.pkgforge.dev/aarch64/ppsspp.appbundle.screen_10.png",
"https://pkg.pkgforge.dev/aarch64/ppsspp.appbundle.screen_11.png",
"https://pkg.pkgforge.dev/aarch64/ppsspp.appbundle.screen_12.png",
"https://pkg.pkgforge.dev/aarch64/ppsspp.appbundle.screen_13.png",
"https://pkg.pkgforge.dev/aarch64/ppsspp.appbundle.screen_14.png",
"https://pkg.pkgforge.dev/aarch64/ppsspp.appbundle.screen_15.png",
"https://pkg.pkgforge.dev/aarch64/ppsspp.appbundle.screen_16.png",
"https://pkg.pkgforge.dev/aarch64/ppsspp.appbundle.screen_17.png",
"https://pkg.pkgforge.dev/aarch64/ppsspp.appbundle.screen_18.png"
],
"provides": "",
"snapshots": [
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/1d47ce84222290d82fa543c9cc616ad944c41265/aarch64-Linux/ppsspp.dwfs.appbundle#[2024-11-06T08:15:27]",
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/9545d4c5bc116058fea92b7827241cca0fa0eb0e/aarch64-Linux/ppsspp.dwfs.appbundle#[2024-11-06T05:21:35]"
]
},
{
"name": "ristretto.dwfs.appbundle",
"bin_id": "org.xfce.ristretto",
"bin_name": "ristretto",
"description": "An Image Viewer",
"note": "AppBundles: https://github.com/xplshn/pelf. More: https://l.ajam.dev/appbundles",
"version": "0.13.2",
"download_url": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/aarch64-Linux/ristretto.dwfs.appbundle",
"size": "17.06 MB",
"bsum": "147ec95961fd9c1c524ae009a032e1316cbf332c54dc55e94f06258601134626",
"shasum": "2007188183129752c1257e730ef4cf579a45a257e04b220caead9e512aac02c8",
"build_date": "2024-11-07T08:18:27",
"repology": "https://pkgcache.pkgforge.dev/aarch64/ristretto.dwfs.appbundle.repology.json",
"src_url": "https://gitlab.xfce.org/apps/ristretto",
"web_url": "https://docs.xfce.org/apps/ristretto/start",
"build_script": "https://github.com/pkgforge/pkgcache/blob/main/.github/scripts/aarch64-Linux/pkgs/ristretto.appbundle.sh",
"build_log": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/aarch64-Linux/ristretto.appbundle.log",
"appstream": "",
"category": "ImageProcessing,Photography,Viewer",
"desktop": "",
"icon": "https://pkgcache.pkgforge.dev/aarch64/ristretto.dwfs.appbundle.icon.png",
"screenshots": [
"https://pkg.pkgforge.dev/aarch64/ristretto.appbundle.screen_1.png"
],
"provides": "",
"snapshots": [
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/1d47ce84222290d82fa543c9cc616ad944c41265/aarch64-Linux/ristretto.dwfs.appbundle#[2024-11-06T08:15:27]",
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/9545d4c5bc116058fea92b7827241cca0fa0eb0e/aarch64-Linux/ristretto.dwfs.appbundle#[2024-11-06T05:21:35]"
]
},
{
"name": "ryujinx.appimage",
"bin_id": "org.ryujinx.Ryujinx",
"bin_name": "ryujinx",
"description": "A simple, experimental Nintendo Switch emulator",
"note": "Officially Created AppImage. Check/Report @ https://github.com/ryujinx-mirror/ryujinx",
"version": "r.49574a9",
"download_url": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/aarch64-Linux/ryujinx.appimage",
"size": "24.25 MB",
"bsum": "ab1ed5d79ac2687843e08c906c35a6de4d43e820452a2dd9378696756d4b90b2",
"shasum": "52ba8b8b55149ce3b4e562229d7ae88c24ce8b1637bb92007c8f4667705da353",
"build_date": "2024-11-07T08:18:44",
"repology": "https://pkgcache.pkgforge.dev/aarch64/ryujinx.appimage.repology.json",
"src_url": "https://github.com/ryujinx-mirror/ryujinx",
"web_url": "https://github.com/ryujinx-mirror/ryujinx",
"build_script": "https://github.com/pkgforge/pkgcache/blob/main/.github/scripts/aarch64-Linux/pkgs/ryujinx.appimage.sh",
"build_log": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/aarch64-Linux/ryujinx.appimage.log",
"appstream": "",
"category": "Emulator",
"desktop": "https://pkgcache.pkgforge.dev/aarch64/ryujinx.appimage.desktop",
"icon": "https://pkgcache.pkgforge.dev/aarch64/ryujinx.appimage.icon.png",
"screenshots": [
"https://pkg.pkgforge.dev/aarch64/ryujinx.appimage.screen_1.png",
"https://pkg.pkgforge.dev/aarch64/ryujinx.appimage.screen_2.png",
"https://pkg.pkgforge.dev/aarch64/ryujinx.appimage.screen_3.png",
"https://pkg.pkgforge.dev/aarch64/ryujinx.appimage.screen_4.png",
"https://pkg.pkgforge.dev/aarch64/ryujinx.appimage.screen_5.png",
"https://pkg.pkgforge.dev/aarch64/ryujinx.appimage.screen_6.png",
"https://pkg.pkgforge.dev/aarch64/ryujinx.appimage.screen_7.png",
"https://pkg.pkgforge.dev/aarch64/ryujinx.appimage.screen_8.png",
"https://pkg.pkgforge.dev/aarch64/ryujinx.appimage.screen_9.png",
"https://pkg.pkgforge.dev/aarch64/ryujinx.appimage.screen_10.png",
"https://pkg.pkgforge.dev/aarch64/ryujinx.appimage.screen_11.png",
"https://pkg.pkgforge.dev/aarch64/ryujinx.appimage.screen_12.png",
"https://pkg.pkgforge.dev/aarch64/ryujinx.appimage.screen_13.png",
"https://pkg.pkgforge.dev/aarch64/ryujinx.appimage.screen_14.png",
"https://pkg.pkgforge.dev/aarch64/ryujinx.appimage.screen_15.png",
"https://pkg.pkgforge.dev/aarch64/ryujinx.appimage.screen_16.png",
"https://pkg.pkgforge.dev/aarch64/ryujinx.appimage.screen_17.png",
"https://pkg.pkgforge.dev/aarch64/ryujinx.appimage.screen_18.png",
"https://pkg.pkgforge.dev/aarch64/ryujinx.appimage.screen_19.png",
"https://pkg.pkgforge.dev/aarch64/ryujinx.appimage.screen_20.png",
"https://pkg.pkgforge.dev/aarch64/ryujinx.appimage.screen_21.png",
"https://pkg.pkgforge.dev/aarch64/ryujinx.appimage.screen_22.png"
],
"provides": "",
"snapshots": [
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/1d47ce84222290d82fa543c9cc616ad944c41265/aarch64-Linux/ryujinx.appimage#[2024-11-06T08:15:27]",
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/9545d4c5bc116058fea92b7827241cca0fa0eb0e/aarch64-Linux/ryujinx.appimage#[2024-11-06T05:21:35]"
]
},
{
"name": "xfce4-terminal.dwfs.appbundle",
"bin_id": "org.xfce.terminal",
"bin_name": "xfce4-terminal",
"description": "A lightweight and easy to use Terminal Emulator",
"note": "AppBundles: https://github.com/xplshn/pelf. More: https://l.ajam.dev/appbundles",
"version": "1.1.3",
"download_url": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/aarch64-Linux/xfce4-terminal.dwfs.appbundle",
"size": "20.94 MB",
"bsum": "2ecd141401dbfc559e9be756f90e33ee52a600ec3b93510a4b9d273e895c6d22",
"shasum": "761116e862731cc931d12612028f6a7e704950f3292ae6f58a0a54c6b1d44038",
"build_date": "2024-11-07T08:19:34",
"repology": "https://pkgcache.pkgforge.dev/aarch64/xfce4-terminal.dwfs.appbundle.repology.json",
"src_url": "https://gitlab.xfce.org/apps/xfce4-terminal",
"web_url": "https://docs.xfce.org/apps/xfce4-terminal/start",
"build_script": "https://github.com/pkgforge/pkgcache/blob/main/.github/scripts/aarch64-Linux/pkgs/xfce4-terminal.appbundle.sh",
"build_log": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/aarch64-Linux/xfce4-terminal.appbundle.log",
"appstream": "",
"category": "Core,TerminalEmulator",
"desktop": "",
"icon": "https://pkgcache.pkgforge.dev/aarch64/xfce4-terminal.dwfs.appbundle.icon.png",
"screenshots": [
""
],
"provides": "",
"snapshots": [
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/1d47ce84222290d82fa543c9cc616ad944c41265/aarch64-Linux/xfce4-terminal.dwfs.appbundle#[2024-11-06T08:15:27]",
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/9545d4c5bc116058fea92b7827241cca0fa0eb0e/aarch64-Linux/xfce4-terminal.dwfs.appbundle#[2024-11-06T05:21:35]"
]
}
]
},
{
"host": "x86_64-Linux",
"main": [
{
"name": "86box.appimage",
"bin_id": "net._86box._86Box",
"bin_name": "86box",
"description": "Emulator of x86-based machines",
"note": "Officially Created AppImage. Check/Report @ https://github.com/86Box/86Box. You need to download ROMS (https://86box.readthedocs.io/en/latest/usage/roms.html)",
"version": "v4.2.1",
"download_url": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/x86_64-Linux/86box.appimage",
"size": "57.96 MB",
"bsum": "992741119308bd6102a3cc002fca3cf0bd58195a225f3a47119b7b07ba70413c",
"shasum": "bbeb7211a4c77d4f9595d4a03ebb634779f4bc92f14c1ad62e0f9a98cbe6b1fe",
"build_date": "2024-11-07T07:34:04",
"repology": "https://pkgcache.pkgforge.dev/x86_64/86box.appimage.repology.json",
"src_url": "https://github.com/86Box/86Box",
"web_url": "https://86box.readthedocs.io",
"build_script": "https://github.com/pkgforge/pkgcache/blob/main/.github/scripts/x86_64-Linux/pkgs/86box.appimage.sh",
"build_log": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/x86_64-Linux/86box.appimage.log",
"appstream": "https://pkgcache.pkgforge.dev/x86_64/86box.appimage.appdata.xml",
"category": "Emulator",
"desktop": "https://pkgcache.pkgforge.dev/x86_64/86box.appimage.desktop",
"icon": "https://pkgcache.pkgforge.dev/x86_64/86box.appimage.icon.png",
"screenshots": [
"https://pkg.pkgforge.dev/x86_64/86box.appimage.screen_1.png"
],
"provides": "",
"snapshots": [
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/52daa962e1945b815c71a03afce773c9dd30a4f9/x86_64-Linux/86box.appimage#[2024-11-06T09:12:23]",
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/e757dac417204439d10a52dae82ceb545c1d753c/x86_64-Linux/86box.appimage#[2024-11-06T07:20:16]"
]
},
{
"name": "acreom.appimage",
"bin_id": "xxx.acreom.acreom",
"bin_name": "acreom",
"description": "An IDE based Knowledge Base using Markdown (AppImage)",
"note": "Officially Created AppImage. Check/Report @ https://github.com/Acreom/releases",
"version": "v1.20.2",
"download_url": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/x86_64-Linux/acreom.appimage",
"size": "139.12 MB",
"bsum": "0c7372752639dfce98c12a0dafbb8f3ded9bd4a453823e6cf0ddf2d91642945b",
"shasum": "72f74dd411650568a48933e8862ff0ed1797b53b2bf2301de9a6b7342ed125a3",
"build_date": "2024-11-07T07:34:37",
"repology": "",
"src_url": "https://github.com/Acreom/releases",
"web_url": "https://acreom.com",
"build_script": "https://github.com/pkgforge/pkgcache/blob/main/.github/scripts/x86_64-Linux/pkgs/acreom.appimage.sh",
"build_log": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/x86_64-Linux/acreom.appimage.log",
"appstream": "",
"category": "Database,Education,IDE",
"desktop": "https://pkgcache.pkgforge.dev/x86_64/acreom.appimage.desktop",
"icon": "https://pkgcache.pkgforge.dev/x86_64/acreom.appimage.icon.png",
"screenshots": [
""
],
"provides": "",
"snapshots": [
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/52daa962e1945b815c71a03afce773c9dd30a4f9/x86_64-Linux/acreom.appimage#[2024-11-06T09:12:23]",
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/e757dac417204439d10a52dae82ceb545c1d753c/x86_64-Linux/acreom.appimage#[2024-11-06T07:20:16]"
]
},
{
"name": "actual.appimage",
"bin_id": "xxx.actual.actual",
"bin_name": "actual",
"description": "A local-first personal finance app",
"note": "Officially Created AppImage. Check/Report @ https://github.com/actualbudget/actual",
"version": "v24.11.0",
"download_url": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/x86_64-Linux/actual.appimage",
"size": "92.73 MB",
"bsum": "3aacf67b6d1bb6cf753b1b133c6deba799c21afd38ceccf2e82d0afa2722b183",
"shasum": "54dec8e5bc55fa613adc06c644a67539e674b5c307b1129948e2c751c475a645",
"build_date": "2024-11-07T07:34:58",
"repology": "",
"src_url": "https://github.com/actualbudget/actual",
"web_url": "https://actualbudget.org",
"build_script": "https://github.com/pkgforge/pkgcache/blob/main/.github/scripts/x86_64-Linux/pkgs/actual.appimage.sh",
"build_log": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/x86_64-Linux/actual.appimage.log",
"appstream": "",
"category": "Finance",
"desktop": "https://pkgcache.pkgforge.dev/x86_64/actual.appimage.desktop",
"icon": "https://pkgcache.pkgforge.dev/x86_64/actual.appimage.icon.png",
"screenshots": [
""
],
"provides": "",
"snapshots": [
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/52daa962e1945b815c71a03afce773c9dd30a4f9/x86_64-Linux/actual.appimage#[2024-11-06T09:12:23]",
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/e757dac417204439d10a52dae82ceb545c1d753c/x86_64-Linux/actual.appimage#[2024-11-06T07:20:16]"
]
},
{
"name": "advanced-passgen.appimage",
"bin_id": "xxx.advanced-passgen.advanced-passgen",
"bin_name": "advanced-passgen",
"description": "Advanced Password Generator",
"note": "Officially Created AppImage. Check/Report @ https://github.com/CodeDead/Advanced-PassGen",
"version": "v2.5.2",
"download_url": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/x86_64-Linux/advanced-passgen.appimage",
"size": "101.13 MB",
"bsum": "f9d40e8d5312faf7b53d13dc793ca24fa512b5fc54c269bb6940a658e720b5f1",
"shasum": "d5120bc2b03645b6ce2d24552d7ca4163200c7e46f745581d872fe4fd1a04a73",
"build_date": "2024-11-07T07:35:23",
"repology": "",
"src_url": "https://github.com/CodeDead/Advanced-PassGen",
"web_url": "https://advancedpassgen.codedead.com",
"build_script": "https://github.com/pkgforge/pkgcache/blob/main/.github/scripts/x86_64-Linux/pkgs/advanced-passgen.appimage.sh",
"build_log": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/x86_64-Linux/advanced-passgen.appimage.log",
"appstream": "",
"category": "Security,Utility",
"desktop": "https://pkgcache.pkgforge.dev/x86_64/advanced-passgen.appimage.desktop",
"icon": "https://pkgcache.pkgforge.dev/x86_64/advanced-passgen.appimage.icon.png",
"screenshots": [
""
],
"provides": "",
"snapshots": [
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/52daa962e1945b815c71a03afce773c9dd30a4f9/x86_64-Linux/advanced-passgen.appimage#[2024-11-06T09:12:23]",
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/e757dac417204439d10a52dae82ceb545c1d753c/x86_64-Linux/advanced-passgen.appimage#[2024-11-06T07:20:16]"
]
},
{
"name": "android-platform-tools.appimage",
"bin_id": "xxx.com.android.developer",
"bin_name": "android-platform-tools",
"description": "Android SDK Platform-Tools (adb, fastboot & more)",
"note": "Community Created AppImage. Check/Report @ https://github.com/Samueru-sama/android-tools-AppImage",
"version": "2024.2.2-7",
"download_url": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/x86_64-Linux/android-platform-tools.appimage",
"size": "8.23 MB",
"bsum": "5178f1e33a8dcb03046a7002a725196a9565932f90dd9707cb573637130acb3d",
"shasum": "cbfdf0044a99d8d72e4e339c055db2cf345cca66e4c4f53f2e39d7e06a688e4d",
"build_date": "2024-11-07T07:35:37",
"repology": "https://pkgcache.pkgforge.dev/x86_64/android-platform-tools.appimage.repology.json",
"src_url": "https://android.googlesource.com/platform/tools/base",
"web_url": "https://developer.android.com/tools/releases/platform-tools",
"build_script": "https://github.com/pkgforge/pkgcache/blob/main/.github/scripts/x86_64-Linux/pkgs/android-platform-tools.appimage.sh",
"build_log": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/x86_64-Linux/android-platform-tools.appimage.log",
"appstream": "",
"category": "ConsoleOnly,Utility",
"desktop": "https://pkgcache.pkgforge.dev/x86_64/android-platform-tools.appimage.desktop",
"icon": "",
"screenshots": [
""
],
"provides": "",
"snapshots": [
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/52daa962e1945b815c71a03afce773c9dd30a4f9/x86_64-Linux/android-platform-tools.appimage#[2024-11-06T09:12:23]",
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/e757dac417204439d10a52dae82ceb545c1d753c/x86_64-Linux/android-platform-tools.appimage#[2024-11-06T07:20:16]"
]
},
{
"name": "anydesk.appimage",
"bin_id": "com.anydesk.Anydesk",
"bin_name": "anydesk",
"description": "Desktop sharing application, providing remote support and online meetings",
"note": "Community Created AppImage. Check/Report @ https://github.com/ivan-hc/Anydesk-appimage",
"version": "6.3.3",
"download_url": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/x86_64-Linux/anydesk.appimage",
"size": "14.11 MB",
"bsum": "6b5043524944123f2f0611dd020a694e089308d2adf66b0884e24226a53ac673",
"shasum": "364344fda3d1f43692a53655ea6f0f32381654fc161819d01c51c58f592ad19f",
"build_date": "2024-11-07T07:35:44",
"repology": "https://pkgcache.pkgforge.dev/x86_64/anydesk.appimage.repology.json",
"src_url": "https://github.com/ivan-hc/Anydesk-appimage",
"web_url": "https://www.anydesk.com",
"build_script": "https://github.com/pkgforge/pkgcache/blob/main/.github/scripts/x86_64-Linux/pkgs/anydesk.appimage.sh",
"build_log": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/x86_64-Linux/anydesk.appimage.log",
"appstream": "",
"category": "RemoteAccess,VideoConference",
"desktop": "https://pkgcache.pkgforge.dev/x86_64/anydesk.appimage.desktop",
"icon": "https://pkgcache.pkgforge.dev/x86_64/anydesk.appimage.icon.png",
"screenshots": [
""
],
"provides": "",
"snapshots": [
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/52daa962e1945b815c71a03afce773c9dd30a4f9/x86_64-Linux/anydesk.appimage#[2024-11-06T09:12:23]",
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/e757dac417204439d10a52dae82ceb545c1d753c/x86_64-Linux/anydesk.appimage#[2024-11-06T07:20:16]"
]
},
{
"name": "bottles.appimage",
"bin_id": "com.usebottles.bottles",
"bin_name": "bottles",
"description": "An easy-to-use wineprefix manager to Run Windows software and games on Linux",
"note": "Community Created AppImage. Check/Report @ https://github.com/ivan-hc/Bottles-appimage",
"version": "51.15",
"download_url": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/x86_64-Linux/bottles.appimage",
"size": "331.59 MB",
"bsum": "57b47c5e327e5f06305f5def0d48f921ab45a9020791f8b6fa995497b3c6c3d5",
"shasum": "2ac0cbb4dcffb677e517aa66d0f71b7f21212ec3fb0601b73ba54e05fdd71ec8",
"build_date": "2024-11-07T07:36:14",
"repology": "https://pkgcache.pkgforge.dev/x86_64/bottles.appimage.repology.json",
"src_url": "https://github.com/bottlesdevs/Bottles",
"web_url": "https://usebottles.com",
"build_script": "https://github.com/pkgforge/pkgcache/blob/main/.github/scripts/x86_64-Linux/pkgs/bottles.appimage.sh",
"build_log": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/x86_64-Linux/bottles.appimage.log",
"appstream": "",
"category": "Emulator",
"desktop": "https://pkgcache.pkgforge.dev/x86_64/bottles.appimage.desktop",
"icon": "https://pkgcache.pkgforge.dev/x86_64/bottles.appimage.icon.png",
"screenshots": [
"https://pkg.pkgforge.dev/x86_64/bottles.appimage.screen_1.png",
"https://pkg.pkgforge.dev/x86_64/bottles.appimage.screen_2.png",
"https://pkg.pkgforge.dev/x86_64/bottles.appimage.screen_3.png",
"https://pkg.pkgforge.dev/x86_64/bottles.appimage.screen_4.png",
"https://pkg.pkgforge.dev/x86_64/bottles.appimage.screen_5.png",
"https://pkg.pkgforge.dev/x86_64/bottles.appimage.screen_6.png",
"https://pkg.pkgforge.dev/x86_64/bottles.appimage.screen_7.png",
"https://pkg.pkgforge.dev/x86_64/bottles.appimage.screen_8.png",
"https://pkg.pkgforge.dev/x86_64/bottles.appimage.screen_9.png",
"https://pkg.pkgforge.dev/x86_64/bottles.appimage.screen_10.png",
"https://pkg.pkgforge.dev/x86_64/bottles.appimage.screen_11.png",
"https://pkg.pkgforge.dev/x86_64/bottles.appimage.screen_12.png",
"https://pkg.pkgforge.dev/x86_64/bottles.appimage.screen_13.png",
"https://pkg.pkgforge.dev/x86_64/bottles.appimage.screen_14.png",
"https://pkg.pkgforge.dev/x86_64/bottles.appimage.screen_15.png",
"https://pkg.pkgforge.dev/x86_64/bottles.appimage.screen_16.png",
"https://pkg.pkgforge.dev/x86_64/bottles.appimage.screen_17.png",
"https://pkg.pkgforge.dev/x86_64/bottles.appimage.screen_18.png",
"https://pkg.pkgforge.dev/x86_64/bottles.appimage.screen_19.png",
"https://pkg.pkgforge.dev/x86_64/bottles.appimage.screen_20.png",
"https://pkg.pkgforge.dev/x86_64/bottles.appimage.screen_21.png",
"https://pkg.pkgforge.dev/x86_64/bottles.appimage.screen_22.png",
"https://pkg.pkgforge.dev/x86_64/bottles.appimage.screen_23.png",
"https://pkg.pkgforge.dev/x86_64/bottles.appimage.screen_24.png",
"https://pkg.pkgforge.dev/x86_64/bottles.appimage.screen_25.png",
"https://pkg.pkgforge.dev/x86_64/bottles.appimage.screen_26.png",
"https://pkg.pkgforge.dev/x86_64/bottles.appimage.screen_27.png"
],
"provides": "",
"snapshots": [
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/52daa962e1945b815c71a03afce773c9dd30a4f9/x86_64-Linux/bottles.appimage#[2024-11-06T09:12:23]",
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/e757dac417204439d10a52dae82ceb545c1d753c/x86_64-Linux/bottles.appimage#[2024-11-06T07:20:16]"
]
},
{
"name": "brave.appimage",
"bin_id": "com.brave.Browser",
"bin_name": "brave",
"description": "Privacy-oriented browser for Desktop and Laptop computers",
"note": "Community Created AppImage. Check/Report @ https://github.com/srevinsaju/Brave-AppImage",
"version": "v1.71.123",
"download_url": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/x86_64-Linux/brave.appimage",
"size": "145.96 MB",
"bsum": "2044b7d0649a01036822da6bb1c8b66458a45344b61dcd05992e4f36a48b8a7c",
"shasum": "7652a83bc16721748051d69cfc7f22eed0ab7cf2aae375993fe0c9ebb7d0c407",
"build_date": "2024-11-07T07:36:50",
"repology": "https://pkgcache.pkgforge.dev/x86_64/brave.appimage.repology.json",
"src_url": "https://github.com/brave/brave-browser",
"web_url": "https://brave.com",
"build_script": "https://github.com/pkgforge/pkgcache/blob/main/.github/scripts/x86_64-Linux/pkgs/brave.appimage.sh",
"build_log": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/x86_64-Linux/brave.appimage.log",
"appstream": "",
"category": "WebBrowser",
"desktop": "https://pkgcache.pkgforge.dev/x86_64/brave.appimage.desktop",
"icon": "https://pkgcache.pkgforge.dev/x86_64/brave.appimage.icon.png",
"screenshots": [
"https://pkg.pkgforge.dev/x86_64/brave.appimage.screen_1.png",
"https://pkg.pkgforge.dev/x86_64/brave.appimage.screen_2.png",
"https://pkg.pkgforge.dev/x86_64/brave.appimage.screen_3.png",
"https://pkg.pkgforge.dev/x86_64/brave.appimage.screen_4.png",
"https://pkg.pkgforge.dev/x86_64/brave.appimage.screen_5.png",
"https://pkg.pkgforge.dev/x86_64/brave.appimage.screen_6.png",
"https://pkg.pkgforge.dev/x86_64/brave.appimage.screen_7.png",
"https://pkg.pkgforge.dev/x86_64/brave.appimage.screen_8.png",
"https://pkg.pkgforge.dev/x86_64/brave.appimage.screen_9.png",
"https://pkg.pkgforge.dev/x86_64/brave.appimage.screen_10.png",
"https://pkg.pkgforge.dev/x86_64/brave.appimage.screen_11.png",
"https://pkg.pkgforge.dev/x86_64/brave.appimage.screen_12.png"
],
"provides": "",
"snapshots": [
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/52daa962e1945b815c71a03afce773c9dd30a4f9/x86_64-Linux/brave.appimage#[2024-11-06T09:12:23]",
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/e757dac417204439d10a52dae82ceb545c1d753c/x86_64-Linux/brave.appimage#[2024-11-06T07:20:16]"
]
},
{
"name": "browservice.appimage",
"bin_id": "org.browservice.browservice",
"bin_name": "browservice",
"description": "Browse the modern web on historical browsers",
"note": "Officially Created AppImage. Check/Report @ https://github.com/ttalvitie/browservice",
"version": "v0.9.10.0",
"download_url": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/x86_64-Linux/browservice.appimage",
"size": "228.38 MB",
"bsum": "ab827c9162cd9717a2f2e6e297b26c273202e3b1a5e000f0973133e1fcfa5324",
"shasum": "f0d164074bca681b7de3568acb72640ac466029732d1c9b2dd0bc005d2be088f",
"build_date": "2024-11-07T07:37:34",
"repology": "",
"src_url": "https://github.com/ttalvitie/browservice",
"web_url": "https://github.com/ttalvitie/browservice",
"build_script": "https://github.com/pkgforge/pkgcache/blob/main/.github/scripts/x86_64-Linux/pkgs/browservice.appimage.sh",
"build_log": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/x86_64-Linux/browservice.appimage.log",
"appstream": "",
"category": "WebBrowser",
"desktop": "https://pkgcache.pkgforge.dev/x86_64/browservice.appimage.desktop",
"icon": "https://pkgcache.pkgforge.dev/x86_64/browservice.appimage.icon.png",
"screenshots": [
""
],
"provides": "",
"snapshots": [
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/52daa962e1945b815c71a03afce773c9dd30a4f9/x86_64-Linux/browservice.appimage#[2024-11-06T09:12:23]",
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/e757dac417204439d10a52dae82ceb545c1d753c/x86_64-Linux/browservice.appimage#[2024-11-06T07:20:16]"
]
},
{
"name": "cemu.appimage",
"bin_id": "info.cemu.Cemu",
"bin_name": "cemu",
"description": "Wii U emulator",
"note": "Officially Created AppImage. Check/Report @ https://github.com/cemu-project/Cemu",
"version": "v2.2",
"download_url": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/x86_64-Linux/cemu.appimage",
"size": "56.2 MB",
"bsum": "2d3b55117c061a07962e3befda674f5f6da965f7342404c1a513d69d207770ae",
"shasum": "0fee69c352f2dcd601a4ab2202cb5d0b8918fcbc59ed4a68bf18583398889251",
"build_date": "2024-11-07T07:37:50",
"repology": "https://pkgcache.pkgforge.dev/x86_64/cemu.appimage.repology.json",
"src_url": "https://github.com/cemu-project/Cemu",
"web_url": "https://cemu.info",
"build_script": "https://github.com/pkgforge/pkgcache/blob/main/.github/scripts/x86_64-Linux/pkgs/cemu.appimage.sh",
"build_log": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/x86_64-Linux/cemu.appimage.log",
"appstream": "https://pkgcache.pkgforge.dev/x86_64/cemu.appimage.appdata.xml",
"category": "Emulator,Game",
"desktop": "https://pkgcache.pkgforge.dev/x86_64/cemu.appimage.desktop",
"icon": "https://pkgcache.pkgforge.dev/x86_64/cemu.appimage.icon.png",
"screenshots": [
"https://pkg.pkgforge.dev/x86_64/cemu.appimage.screen_1.png"
],
"provides": "",
"snapshots": [
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/52daa962e1945b815c71a03afce773c9dd30a4f9/x86_64-Linux/cemu.appimage#[2024-11-06T09:12:23]",
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/e757dac417204439d10a52dae82ceb545c1d753c/x86_64-Linux/cemu.appimage#[2024-11-06T07:20:16]"
]
},
{
"name": "chromium.dwfs.appbundle",
"bin_id": "org.chromium.Chromium",
"bin_name": "chromium",
"description": "Open source web browser from Google",
"note": "AppBundles: https://github.com/xplshn/pelf. More: https://l.ajam.dev/appbundles",
"version": "130.0.6723.116",
"download_url": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/x86_64-Linux/chromium.dwfs.appbundle",
"size": "251.53 MB",
"bsum": "9aa0b38ff3b0e338ef3116eacf5f4b070db7f428567868f8774cfb6175aee357",
"shasum": "b0031b8168f1d9e795f5f327c94569e7373523798beaca5b173c178ab63a3b78",
"build_date": "2024-11-07T07:38:38",
"repology": "https://pkgcache.pkgforge.dev/x86_64/chromium.dwfs.appbundle.repology.json",
"src_url": "https://chromium.googlesource.com/chromium/src.git",
"web_url": "https://www.chromium.org",
"build_script": "https://github.com/pkgforge/pkgcache/blob/main/.github/scripts/x86_64-Linux/pkgs/chromium.appbundle.sh",
"build_log": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/x86_64-Linux/chromium.appbundle.log",
"appstream": "",
"category": "WebBrowser",
"desktop": "",
"icon": "https://pkgcache.pkgforge.dev/x86_64/chromium.dwfs.appbundle.icon.png",
"screenshots": [
"https://pkg.pkgforge.dev/x86_64/chromium.appbundle.screen_1.png",
"https://pkg.pkgforge.dev/x86_64/chromium.appbundle.screen_2.png",
"https://pkg.pkgforge.dev/x86_64/chromium.appbundle.screen_3.png",
"https://pkg.pkgforge.dev/x86_64/chromium.appbundle.screen_4.png",
"https://pkg.pkgforge.dev/x86_64/chromium.appbundle.screen_5.png",
"https://pkg.pkgforge.dev/x86_64/chromium.appbundle.screen_6.png"
],
"provides": "",
"snapshots": [
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/52daa962e1945b815c71a03afce773c9dd30a4f9/x86_64-Linux/chromium.dwfs.appbundle#[2024-11-06T09:12:23]",
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/e757dac417204439d10a52dae82ceb545c1d753c/x86_64-Linux/chromium.dwfs.appbundle#[2024-11-06T07:20:16]"
]
},
{
"name": "chromium-alpine.flatimage",
"bin_id": "org.chromium.Chromium",
"bin_name": "chromium",
"description": "Open source web browser from Google",
"note": "FlatImages: https://github.com/ruanformigoni/flatimage. More: https://l.ajam.dev/flatimages",
"version": "130.0.6723.116",
"download_url": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/x86_64-Linux/chromium-alpine.flatimage",
"size": "246.96 MB",
"bsum": "1223d21b9d7da9692c614ada9fdd4d572152fd8bde062e02e402533922089c62",
"shasum": "4ebb2cac476d4527ac3050ed57774c8ec36a7050435d2f130e1abccd20eaee60",
"build_date": "2024-11-07T07:39:52",
"repology": "https://pkgcache.pkgforge.dev/x86_64/chromium-alpine.flatimage.repology.json",
"src_url": "https://chromium.googlesource.com/chromium/src.git",
"web_url": "https://www.chromium.org",
"build_script": "https://github.com/pkgforge/pkgcache/blob/main/.github/scripts/x86_64-Linux/pkgs/chromium.flatimage.sh",
"build_log": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/x86_64-Linux/chromium.flatimage.log",
"appstream": "",
"category": "WebBrowser",
"desktop": "",
"icon": "",
"screenshots": [
"https://pkg.pkgforge.dev/x86_64/chromium.flatimage.screen_1.png",
"https://pkg.pkgforge.dev/x86_64/chromium.flatimage.screen_2.png",
"https://pkg.pkgforge.dev/x86_64/chromium.flatimage.screen_3.png",
"https://pkg.pkgforge.dev/x86_64/chromium.flatimage.screen_4.png",
"https://pkg.pkgforge.dev/x86_64/chromium.flatimage.screen_5.png",
"https://pkg.pkgforge.dev/x86_64/chromium.flatimage.screen_6.png"
],
"provides": "",
"snapshots": [
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/52daa962e1945b815c71a03afce773c9dd30a4f9/x86_64-Linux/chromium-alpine.flatimage#[2024-11-06T09:12:23]",
"https://huggingface.co/datasets/pkgforge/pkgcache/resolve/e757dac417204439d10a52dae82ceb545c1d753c/x86_64-Linux/chromium-alpine.flatimage#[2024-11-06T07:20:16]"
]
},
{
"name": "chromium.nixappimage",
"bin_id": "org.chromium.Chromium",
"bin_name": "chromium",
"description": "Open source web browser from Google",
"note": "NixAppImages: https://l.ajam.dev/nix-appimage",
"version": "130.0.6723.91",
"download_url": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/x86_64-Linux/chromium.nixappimage",
"size": "438.51 MB",
"bsum": "cfb978552bc824a6a10d839f8f98aa49a8cc771900bcb427f19189ced4585447",
"shasum": "548116fcd18614ee56051eb429f657e52af3249c86cd654a8beafe0df318d558",
"build_date": "2024-11-07T07:43:05",
"repology": "https://pkgcache.pkgforge.dev/x86_64/chromium.nixappimage.repology.json",
"src_url": "https://chromium.googlesource.com/chromium/src.git",
"web_url": "https://www.chromium.org",
"build_script": "https://github.com/pkgforge/pkgcache/blob/main/.github/scripts/x86_64-Linux/pkgs/chromium.nixappimage.sh",
"build_log": "https://huggingface.co/datasets/pkgforge/pkgcache/resolve/main/x86_64-Linux/chromium.nixappimage.log",
"appstream": "",
"category": "WebBrowser",
"desktop": "https://pkgcache.pkgforge.dev/x86_64/chromium.nixappimage.desktop",
"icon": "https://pkgcache.pkgforge.dev/x86_64/chromium.nixappimage.icon.png",
"screenshots": [
"https://pkg.pkgforge.dev/x86_64/chromium.nixappimage.screen_1.png",
"https://pkg.pkgforge.dev/x86_64/chromium.nixappimage.screen_2.png",
"https://pkg.pkgforge.dev/x86_64/chromium.nixappimage.screen_3.png",
"https://pkg.pkgforge.dev/x86_64/chromium.nixappimage.screen_4.png",
"https://pkg.pkgforge.dev/x86_64/chromium.nixappimage.screen_5.png",
"https://pkg.pkgforge.dev/x86_64/chromium.nixappimage.screen_6.png"
],
"provides": "",
"snapshots": [