-
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
{
"lockfile_version": "1",
"packages": {
"dprint@0.49.1": {
"last_modified": "2025-03-24T07:07:41Z",
"resolved": "github:NixOS/nixpkgs/1750f3c1c89488e2ffdd47cab9d05454dddfb734#dprint",
"source": "devbox-search",
"version": "0.49.1",
"systems": {
"aarch64-darwin": {
"outputs": [
{
"name": "out",
"path": "/nix/store/gzdyaq8nvxxwg8b8yi64817wg956zwys-dprint-0.49.1",
"default": true
}
],
"store_path": "/nix/store/gzdyaq8nvxxwg8b8yi64817wg956zwys-dprint-0.49.1"
},
"aarch64-linux": {
"outputs": [
{
"name": "out",
"path": "/nix/store/rjmjrn5l15gx2h45jyzyrd1d5h37cd9r-dprint-0.49.1",
"default": true
}
],
"store_path": "/nix/store/rjmjrn5l15gx2h45jyzyrd1d5h37cd9r-dprint-0.49.1"
},
"x86_64-darwin": {
"outputs": [
{
"name": "out",
"path": "/nix/store/1y92k4385wg6n0daiag0hrqnxjgv6nm7-dprint-0.49.1",
"default": true
}
],
"store_path": "/nix/store/1y92k4385wg6n0daiag0hrqnxjgv6nm7-dprint-0.49.1"
},
"x86_64-linux": {
"outputs": [
{
"name": "out",
"path": "/nix/store/2dm97hbm0b41s33g2z0jwi4aqxyra4p9-dprint-0.49.1",
"default": true
}
],
"store_path": "/nix/store/2dm97hbm0b41s33g2z0jwi4aqxyra4p9-dprint-0.49.1"
}
}
},
"github:NixOS/nixpkgs/nixpkgs-unstable": {
"resolved": "github:NixOS/nixpkgs/d19cf9dfc633816a437204555afeb9e722386b76?lastModified=1744316434&narHash=sha256-lzFCg%2F1C39pyY2hMB2gcuHV79ozpOz%2FVu15hdjiFOfI%3D"
},
"gtk4@4.16": {
"last_modified": "2025-03-27T11:50:31Z",
"resolved": "github:NixOS/nixpkgs/6c5963357f3c1c840201eda129a99d455074db04#gtk4",
"source": "devbox-search",
"version": "4.16.12",
"systems": {
"aarch64-darwin": {
"outputs": [
{
"name": "out",
"path": "/nix/store/i6cxc422nvip8sfkd6zibzivvnlah4x5-gtk4-4.16.12",
"default": true
},
{
"name": "dev",
"path": "/nix/store/gh6zdj7xbcgxslasgxs33zg5gfl420r0-gtk4-4.16.12-dev"
}
],
"store_path": "/nix/store/i6cxc422nvip8sfkd6zibzivvnlah4x5-gtk4-4.16.12"
},
"aarch64-linux": {
"outputs": [
{
"name": "out",
"path": "/nix/store/7kb1hkhfx2fwmchvk8j4icwjqs6ivvh8-gtk4-4.16.12",
"default": true
},
{
"name": "debug",
"path": "/nix/store/miksnfwa6wyipad0y3k9gym5nq05hh2a-gtk4-4.16.12-debug"
},
{
"name": "dev",
"path": "/nix/store/8mgl4iznzl3ff78ckz9yl3h9m4jbwz08-gtk4-4.16.12-dev"
},
{
"name": "devdoc",
"path": "/nix/store/z9l8r0328m2vcnfbskw8v0zi01ww19cf-gtk4-4.16.12-devdoc"
}
],
"store_path": "/nix/store/7kb1hkhfx2fwmchvk8j4icwjqs6ivvh8-gtk4-4.16.12"
},
"x86_64-darwin": {
"outputs": [
{
"name": "out",
"path": "/nix/store/a3ypjk2ywcj10sgvjdvqbihscgyqca45-gtk4-4.16.12",
"default": true
},
{
"name": "dev",
"path": "/nix/store/vyqj30h729y80bqvx11ldk2q4l4mwi9w-gtk4-4.16.12-dev"
}
],
"store_path": "/nix/store/a3ypjk2ywcj10sgvjdvqbihscgyqca45-gtk4-4.16.12"
},
"x86_64-linux": {
"outputs": [
{
"name": "out",
"path": "/nix/store/jlbffm71ylch5dyw44g2p2c857p1yqjv-gtk4-4.16.12",
"default": true
},
{
"name": "debug",
"path": "/nix/store/vsbg41sxl9hr6n77wli08a9x03y623cl-gtk4-4.16.12-debug"
},
{
"name": "dev",
"path": "/nix/store/j8w09qk0waaiirlpr11as2ykq9n10vsj-gtk4-4.16.12-dev"
},
{
"name": "devdoc",
"path": "/nix/store/r545vvgkwfphpkb9mnmlah3gsvha8zxs-gtk4-4.16.12-devdoc"
}
],
"store_path": "/nix/store/jlbffm71ylch5dyw44g2p2c857p1yqjv-gtk4-4.16.12"
}
}
},
"libadwaita@1.6.4": {
"last_modified": "2025-03-27T11:50:31Z",
"resolved": "github:NixOS/nixpkgs/6c5963357f3c1c840201eda129a99d455074db04#libadwaita",
"source": "devbox-search",
"version": "1.6.4",
"systems": {
"aarch64-darwin": {
"outputs": [
{
"name": "out",
"path": "/nix/store/1zbxa71s35rhspjf6w1qc96fn0dv5aba-libadwaita-1.6.4",
"default": true
},
{
"name": "devdoc",
"path": "/nix/store/fldcwqa2ypq6fpif7raax9f5y02psgxw-libadwaita-1.6.4-devdoc"
},
{
"name": "dev",
"path": "/nix/store/01p6j1mj4vc6h185g6nq09vqcjghawcj-libadwaita-1.6.4-dev"
}
],
"store_path": "/nix/store/1zbxa71s35rhspjf6w1qc96fn0dv5aba-libadwaita-1.6.4"
},
"aarch64-linux": {
"outputs": [
{
"name": "out",
"path": "/nix/store/266zvna2vszfa0n8v8fm6r2miykzwk4d-libadwaita-1.6.4",
"default": true
},
{
"name": "debug",
"path": "/nix/store/nmny2rchw8x0v1n9mv8lmcm04aibk7jz-libadwaita-1.6.4-debug"
},
{
"name": "dev",
"path": "/nix/store/5df8n3r4x02a5k96w0w009r525vj6x9j-libadwaita-1.6.4-dev"
},
{
"name": "devdoc",
"path": "/nix/store/ky03rn7zfqq0b80brap3hng2xcfr9838-libadwaita-1.6.4-devdoc"
}
],
"store_path": "/nix/store/266zvna2vszfa0n8v8fm6r2miykzwk4d-libadwaita-1.6.4"
},
"x86_64-darwin": {
"outputs": [
{
"name": "out",
"path": "/nix/store/0bqkmbxxs2hq97bb96x27sjzxw0ykvsx-libadwaita-1.6.4",
"default": true
},
{
"name": "dev",
"path": "/nix/store/4pn21g021pdhwc169hm0sr9cjrb7bvr7-libadwaita-1.6.4-dev"
},
{
"name": "devdoc",
"path": "/nix/store/1ncck3lnlbkqq9j60npwwd5sr1cs1ycy-libadwaita-1.6.4-devdoc"
}
],
"store_path": "/nix/store/0bqkmbxxs2hq97bb96x27sjzxw0ykvsx-libadwaita-1.6.4"
},
"x86_64-linux": {
"outputs": [
{
"name": "out",
"path": "/nix/store/jfia42fgcpz2gmb5l1mqps5qaaan3lcn-libadwaita-1.6.4",
"default": true
},
{
"name": "debug",
"path": "/nix/store/bly8n7mjp1ifj585fa896iwsqym6xn14-libadwaita-1.6.4-debug"
},
{
"name": "dev",
"path": "/nix/store/5jbsdklmyf8d0mxnn3lip1kc0y86ydsy-libadwaita-1.6.4-dev"
},
{
"name": "devdoc",
"path": "/nix/store/8vkk1rnlb8hnlfx910l8wi854g2zr1za-libadwaita-1.6.4-devdoc"
}
],
"store_path": "/nix/store/jfia42fgcpz2gmb5l1mqps5qaaan3lcn-libadwaita-1.6.4"
}
}
},
"pkg-config@latest": {
"last_modified": "2025-03-11T17:52:14Z",
"resolved": "github:NixOS/nixpkgs/0d534853a55b5d02a4ababa1d71921ce8f0aee4c#pkg-config",
"source": "devbox-search",
"version": "0.29.2",
"systems": {
"aarch64-darwin": {
"outputs": [
{
"name": "out",
"path": "/nix/store/ncw1xgww5br70kxchcnlg7mbsgwgba50-pkg-config-wrapper-0.29.2",
"default": true
},
{
"name": "man",
"path": "/nix/store/dbixvi2qm6jkx34w3x7n0l1kcb87rycd-pkg-config-wrapper-0.29.2-man",
"default": true
},
{
"name": "doc",
"path": "/nix/store/j6r8mz0894cm0mqfaj0jsy20ywfskphg-pkg-config-wrapper-0.29.2-doc"
}
],
"store_path": "/nix/store/ncw1xgww5br70kxchcnlg7mbsgwgba50-pkg-config-wrapper-0.29.2"
},
"aarch64-linux": {
"outputs": [
{
"name": "out",
"path": "/nix/store/n6aa34qwpvhc5w85gbl1188df2fzdby4-pkg-config-wrapper-0.29.2",
"default": true
},
{
"name": "man",
"path": "/nix/store/f5saffqd1hcwgzra27nfi2crxscd1v3b-pkg-config-wrapper-0.29.2-man",
"default": true
},
{
"name": "doc",
"path": "/nix/store/xakcakpxizmyymgc7lf2g8bfy52fipj0-pkg-config-wrapper-0.29.2-doc"
}
],
"store_path": "/nix/store/n6aa34qwpvhc5w85gbl1188df2fzdby4-pkg-config-wrapper-0.29.2"
},
"x86_64-darwin": {
"outputs": [
{
"name": "out",
"path": "/nix/store/vhm1xwz33swh2f92slw2f82s5fnmsrjg-pkg-config-wrapper-0.29.2",
"default": true
},
{
"name": "man",
"path": "/nix/store/m6k07pppjhjz33ixg85zpcscybb10kb7-pkg-config-wrapper-0.29.2-man",
"default": true
},
{
"name": "doc",
"path": "/nix/store/jhwihmfdg3ynhvj97pi21m7qlh7rvy3q-pkg-config-wrapper-0.29.2-doc"
}
],
"store_path": "/nix/store/vhm1xwz33swh2f92slw2f82s5fnmsrjg-pkg-config-wrapper-0.29.2"
},
"x86_64-linux": {
"outputs": [
{
"name": "out",
"path": "/nix/store/8cczxvv6hpngc9mxal0wx0lzny4vjp4n-pkg-config-wrapper-0.29.2",
"default": true
},
{
"name": "man",
"path": "/nix/store/zyklfbaq17vlkzcwdz0q24ri64ll7bsk-pkg-config-wrapper-0.29.2-man",
"default": true
},
{
"name": "doc",
"path": "/nix/store/rbgabndl0w2115v7704ijjdjgy83x9jl-pkg-config-wrapper-0.29.2-doc"
}
],
"store_path": "/nix/store/8cczxvv6hpngc9mxal0wx0lzny4vjp4n-pkg-config-wrapper-0.29.2"
}
}
},
"reuse@5.0.2": {
"last_modified": "2025-03-24T07:07:41Z",
"resolved": "github:NixOS/nixpkgs/1750f3c1c89488e2ffdd47cab9d05454dddfb734#reuse",
"source": "devbox-search",
"version": "5.0.2",
"systems": {
"aarch64-darwin": {
"outputs": [
{
"name": "out",
"path": "/nix/store/xjzrl0h00chvav1v4jp7zk5792si0sdl-python3.12-reuse-5.0.2",
"default": true
},
{
"name": "man",
"path": "/nix/store/lc3bs5arbaj4j68s8w73vxx4jx89sqjd-python3.12-reuse-5.0.2-man",
"default": true
},
{
"name": "dist",
"path": "/nix/store/xp5hliqfxxvkdwxa54gl5flwivv1pff8-python3.12-reuse-5.0.2-dist"
},
{
"name": "doc",
"path": "/nix/store/48x0jgkbspx4idxskyfwr3jy4qkc5llq-python3.12-reuse-5.0.2-doc"
}
],
"store_path": "/nix/store/xjzrl0h00chvav1v4jp7zk5792si0sdl-python3.12-reuse-5.0.2"
},
"aarch64-linux": {
"outputs": [
{
"name": "out",
"path": "/nix/store/1y2lz3znk5kyn24083nrxhglr84nfqig-python3.12-reuse-5.0.2",
"default": true
},
{
"name": "man",
"path": "/nix/store/c5jm7yxvr9lig0y06gq4svr8dhcxq58m-python3.12-reuse-5.0.2-man",
"default": true
},
{
"name": "dist",
"path": "/nix/store/ndqla3kdr96wiz418y4xf6apg7n80flp-python3.12-reuse-5.0.2-dist"
},
{
"name": "doc",
"path": "/nix/store/d8j71imjxwmb9w0cgvwsiapyzdjzl12j-python3.12-reuse-5.0.2-doc"
}
],
"store_path": "/nix/store/1y2lz3znk5kyn24083nrxhglr84nfqig-python3.12-reuse-5.0.2"
},
"x86_64-darwin": {
"outputs": [
{
"name": "out",
"path": "/nix/store/myc0m5k931y7wh8m7gf5k2pnkbczbf8s-python3.12-reuse-5.0.2",
"default": true
},
{
"name": "man",
"path": "/nix/store/90j2rh5q2bcdzd9pdvzn56nc62f9k0i0-python3.12-reuse-5.0.2-man",
"default": true
},
{
"name": "doc",
"path": "/nix/store/np3bhpc8968visc43da987ggr01fl6wh-python3.12-reuse-5.0.2-doc"
},
{
"name": "dist",
"path": "/nix/store/hikikics1n5748l8j1x9jak4isky2g8x-python3.12-reuse-5.0.2-dist"
}
],
"store_path": "/nix/store/myc0m5k931y7wh8m7gf5k2pnkbczbf8s-python3.12-reuse-5.0.2"
},
"x86_64-linux": {
"outputs": [
{
"name": "out",
"path": "/nix/store/6fbc43q7xs8ql2wvnamgs0hn2596ydrh-python3.12-reuse-5.0.2",
"default": true
},
{
"name": "man",
"path": "/nix/store/xwbf4xvz0vpj70bc633fia4d7isb1hwa-python3.12-reuse-5.0.2-man",
"default": true
},
{
"name": "dist",
"path": "/nix/store/9m8h298ipfs76x5gb6kmwnjsw6vp8f33-python3.12-reuse-5.0.2-dist"
},
{
"name": "doc",
"path": "/nix/store/h4y0gbj28xyj7hrgdp1kvcbnz9bfc0qx-python3.12-reuse-5.0.2-doc"
}
],
"store_path": "/nix/store/6fbc43q7xs8ql2wvnamgs0hn2596ydrh-python3.12-reuse-5.0.2"
}
}
},
"uncrustify@0.80": {
"last_modified": "2025-03-11T17:52:14Z",
"resolved": "github:NixOS/nixpkgs/0d534853a55b5d02a4ababa1d71921ce8f0aee4c#uncrustify",
"source": "devbox-search",
"version": "0.80.1",
"systems": {
"aarch64-darwin": {
"outputs": [
{
"name": "out",
"path": "/nix/store/6pqz3rv5whwk6q8r8k0xnrmighcpbyij-uncrustify-0.80.1",
"default": true
}
],
"store_path": "/nix/store/6pqz3rv5whwk6q8r8k0xnrmighcpbyij-uncrustify-0.80.1"
},
"aarch64-linux": {
"outputs": [
{
"name": "out",
"path": "/nix/store/ha4ynsg6ylcpvzy0whcig7mnsck7zf12-uncrustify-0.80.1",
"default": true
}
],
"store_path": "/nix/store/ha4ynsg6ylcpvzy0whcig7mnsck7zf12-uncrustify-0.80.1"
},
"x86_64-darwin": {
"outputs": [
{
"name": "out",
"path": "/nix/store/1q4zhqw22x33a1n3kn6ab5fvbx9gc3za-uncrustify-0.80.1",
"default": true
}
],
"store_path": "/nix/store/1q4zhqw22x33a1n3kn6ab5fvbx9gc3za-uncrustify-0.80.1"
},
"x86_64-linux": {
"outputs": [
{
"name": "out",
"path": "/nix/store/7mb1jmf8y9a1sacr6hr2swp03gw2q22c-uncrustify-0.80.1",
"default": true
}
],
"store_path": "/nix/store/7mb1jmf8y9a1sacr6hr2swp03gw2q22c-uncrustify-0.80.1"
}
}
},
"vala-language-server@0.48": {
"last_modified": "2025-03-23T05:31:05Z",
"resolved": "github:NixOS/nixpkgs/dd613136ee91f67e5dba3f3f41ac99ae89c5406b#vala-language-server",
"source": "devbox-search",
"version": "0.48.7",
"systems": {
"aarch64-darwin": {
"outputs": [
{
"name": "out",
"path": "/nix/store/gzyi9lanrcbv5vcpan4x5s64piqxb444-vala-language-server-0.48.7",
"default": true
}
],
"store_path": "/nix/store/gzyi9lanrcbv5vcpan4x5s64piqxb444-vala-language-server-0.48.7"
},
"aarch64-linux": {
"outputs": [
{
"name": "out",
"path": "/nix/store/ldvgxgjadhbqc4082mvi1liqsy5ppq6a-vala-language-server-0.48.7",
"default": true
}
],
"store_path": "/nix/store/ldvgxgjadhbqc4082mvi1liqsy5ppq6a-vala-language-server-0.48.7"
},
"x86_64-darwin": {
"outputs": [
{
"name": "out",
"path": "/nix/store/51bkmcb73627d7ir5cpc93jfq8fp1b4m-vala-language-server-0.48.7",
"default": true
}
],
"store_path": "/nix/store/51bkmcb73627d7ir5cpc93jfq8fp1b4m-vala-language-server-0.48.7"
},
"x86_64-linux": {
"outputs": [
{
"name": "out",
"path": "/nix/store/bn3v37n1pnq6dzz7d66xnqfmqpxckqyb-vala-language-server-0.48.7",
"default": true
}
],
"store_path": "/nix/store/bn3v37n1pnq6dzz7d66xnqfmqpxckqyb-vala-language-server-0.48.7"
}
}
},
"vala@0.56": {
"last_modified": "2025-03-23T05:31:05Z",
"resolved": "github:NixOS/nixpkgs/dd613136ee91f67e5dba3f3f41ac99ae89c5406b#vala",
"source": "devbox-search",
"version": "0.56.17",
"systems": {
"aarch64-darwin": {
"outputs": [
{
"name": "out",
"path": "/nix/store/ngf2vlpv3hdbigqwkmv4s664s4j0rsyr-vala-0.56.17",
"default": true
},
{
"name": "devdoc",
"path": "/nix/store/q34jfzcbh3sbg72kg254fji222xy4pff-vala-0.56.17-devdoc"
}
],
"store_path": "/nix/store/ngf2vlpv3hdbigqwkmv4s664s4j0rsyr-vala-0.56.17"
},
"aarch64-linux": {
"outputs": [
{
"name": "out",
"path": "/nix/store/75xp4hk53c8i5xpkb6kvgakbdssmn1b4-vala-0.56.17",
"default": true
},
{
"name": "devdoc",
"path": "/nix/store/0pnnxdb2jsxynpq4khql8fdfia4ccsyr-vala-0.56.17-devdoc"
}
],
"store_path": "/nix/store/75xp4hk53c8i5xpkb6kvgakbdssmn1b4-vala-0.56.17"
},
"x86_64-darwin": {
"outputs": [
{
"name": "out",
"path": "/nix/store/4aah90yjnjhy8d5p4nglwn5ffjiv7y3d-vala-0.56.17",
"default": true
},
{
"name": "devdoc",
"path": "/nix/store/zb289mps7z1ygb2c5n3290s00l5bq9ff-vala-0.56.17-devdoc"
}
],
"store_path": "/nix/store/4aah90yjnjhy8d5p4nglwn5ffjiv7y3d-vala-0.56.17"
},
"x86_64-linux": {
"outputs": [
{
"name": "out",
"path": "/nix/store/074blln3yn5bbahzh6g366wgh8cz6wld-vala-0.56.17",
"default": true
},
{
"name": "devdoc",
"path": "/nix/store/zwi4bardc9sqw25dc8c7nmqvynr8w07n-vala-0.56.17-devdoc"
}
],
"store_path": "/nix/store/074blln3yn5bbahzh6g366wgh8cz6wld-vala-0.56.17"
}
}
},
"valgrind@3.24.0": {
"last_modified": "2025-04-13T09:22:33Z",
"resolved": "github:NixOS/nixpkgs/18dd725c29603f582cf1900e0d25f9f1063dbf11#valgrind",
"source": "devbox-search",
"version": "3.24.0",
"systems": {
"aarch64-linux": {
"outputs": [
{
"name": "out",
"path": "/nix/store/d9fgg4pvp82mp4qnhbnawnlw0a6cvczw-valgrind-3.24.0",
"default": true
},
{
"name": "man",
"path": "/nix/store/5kmk79fciznha16f7y8jrcvy6lj8zd49-valgrind-3.24.0-man",
"default": true
},
{
"name": "debug",
"path": "/nix/store/98m2b30fqzd2dl2msf13n5gvg1xvs2jb-valgrind-3.24.0-debug"
},
{
"name": "dev",
"path": "/nix/store/pmda2kd2w60np66vr0na8pvwvdr3953w-valgrind-3.24.0-dev"
},
{
"name": "doc",
"path": "/nix/store/k63q4m1q1jvsf80hix0abkxs7l18fpam-valgrind-3.24.0-doc"
}
],
"store_path": "/nix/store/d9fgg4pvp82mp4qnhbnawnlw0a6cvczw-valgrind-3.24.0"
},
"x86_64-linux": {
"outputs": [
{
"name": "out",
"path": "/nix/store/cawr37dyifswi0zfkx1gygc7h16489g4-valgrind-3.24.0",
"default": true
},
{
"name": "man",
"path": "/nix/store/2f2gf5w46j4927kqmx1pmb13frjwcidr-valgrind-3.24.0-man",
"default": true
},
{
"name": "debug",
"path": "/nix/store/4b1kfv7m3n2zlv7qy2vyg33yvy28dzcc-valgrind-3.24.0-debug"
},
{
"name": "dev",
"path": "/nix/store/hlly45zaqv5l4xhbcd6m55w396pgg06p-valgrind-3.24.0-dev"
},
{
"name": "doc",
"path": "/nix/store/pwj9w02s8y026harrxqq2l5ygnh3i0af-valgrind-3.24.0-doc"
}
],
"store_path": "/nix/store/cawr37dyifswi0zfkx1gygc7h16489g4-valgrind-3.24.0"
}
}
},
"zig@0.14.0": {
"last_modified": "2025-03-23T05:31:05Z",
"resolved": "github:NixOS/nixpkgs/dd613136ee91f67e5dba3f3f41ac99ae89c5406b#zig",
"source": "devbox-search",
"version": "0.14.0",
"systems": {
"aarch64-darwin": {
"outputs": [
{
"name": "out",
"path": "/nix/store/rinia2aazl4ba2q9lvmbkzzvf3dx82k0-zig-0.14.0",
"default": true
},
{
"name": "doc",
"path": "/nix/store/3h3w5rx02fgsi2spk38c2drqxyygxra8-zig-0.14.0-doc"
}
],
"store_path": "/nix/store/rinia2aazl4ba2q9lvmbkzzvf3dx82k0-zig-0.14.0"
},
"aarch64-linux": {
"outputs": [
{
"name": "out",
"path": "/nix/store/j01cnwirkn9dc3k1srhsdrh1hjqkymcd-zig-0.14.0",
"default": true
},
{
"name": "doc",
"path": "/nix/store/bdxhm7svza9lbsn6k59bxz2dzyjjyi3k-zig-0.14.0-doc"
}
],
"store_path": "/nix/store/j01cnwirkn9dc3k1srhsdrh1hjqkymcd-zig-0.14.0"
},
"x86_64-darwin": {
"outputs": [
{
"name": "out",
"path": "/nix/store/cyqal1kd73a76api1gmmils6mbxlp1na-zig-0.14.0",
"default": true
},
{
"name": "doc",
"path": "/nix/store/wb68g4fjyhn8fc2x516jiz2h9ln544y8-zig-0.14.0-doc"
}
],
"store_path": "/nix/store/cyqal1kd73a76api1gmmils6mbxlp1na-zig-0.14.0"
},
"x86_64-linux": {
"outputs": [
{
"name": "out",
"path": "/nix/store/dzdlr4lms4wgjvi02r1pcqh54iiq9pn5-zig-0.14.0",
"default": true
},
{
"name": "doc",
"path": "/nix/store/ic33i3ddk1ah4rgqlr4fcx6did1fm8wv-zig-0.14.0-doc"
}
],
"store_path": "/nix/store/dzdlr4lms4wgjvi02r1pcqh54iiq9pn5-zig-0.14.0"
}
}
},
"zls@0.14.0": {
"last_modified": "2025-03-11T17:52:14Z",
"resolved": "github:NixOS/nixpkgs/0d534853a55b5d02a4ababa1d71921ce8f0aee4c#zls",
"source": "devbox-search",
"version": "0.14.0",
"systems": {
"aarch64-darwin": {
"outputs": [
{
"name": "out",
"path": "/nix/store/j65fr3ra8m11ak3v7djzpri6b7clcgkb-zls-0.14.0",
"default": true
}
],
"store_path": "/nix/store/j65fr3ra8m11ak3v7djzpri6b7clcgkb-zls-0.14.0"
},
"aarch64-linux": {
"outputs": [
{
"name": "out",
"path": "/nix/store/bc2yxz09j3bnysxfv1kw5kkc5zn343wk-zls-0.14.0",
"default": true
}
],
"store_path": "/nix/store/bc2yxz09j3bnysxfv1kw5kkc5zn343wk-zls-0.14.0"
},
"x86_64-darwin": {
"outputs": [
{
"name": "out",
"path": "/nix/store/2hnjp9bc9n4xaq5p6w79i6hnkkdvlc8l-zls-0.14.0",
"default": true
}
],
"store_path": "/nix/store/2hnjp9bc9n4xaq5p6w79i6hnkkdvlc8l-zls-0.14.0"
},
"x86_64-linux": {
"outputs": [
{
"name": "out",
"path": "/nix/store/hn6rkr48278lmg29f1p9jms7lp37brhm-zls-0.14.0",
"default": true
}
],
"store_path": "/nix/store/hn6rkr48278lmg29f1p9jms7lp37brhm-zls-0.14.0"
}
}
}
}
}