-
-
Notifications
You must be signed in to change notification settings - Fork 18.2k
Expand file tree
/
Copy pathbroken.yaml
More file actions
7477 lines (7477 loc) · 640 KB
/
broken.yaml
File metadata and controls
7477 lines (7477 loc) · 640 KB
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
# These packages don't compile.
broken-packages:
- 2captcha # failure in job https://hydra.nixos.org/build/233233765 at 2023-09-02
- 3d-graphics-examples # failure in job https://hydra.nixos.org/build/234454565 at 2023-09-13
- 3dmodels # failure in job https://hydra.nixos.org/build/233220850 at 2023-09-02
- AAI # failure in job https://hydra.nixos.org/build/233258828 at 2023-09-02
- aasam # failure in job https://hydra.nixos.org/build/233216423 at 2023-09-02
- abacate # failure in job https://hydra.nixos.org/build/233201225 at 2023-09-02
- abcnotation # failure in job https://hydra.nixos.org/build/233204259 at 2023-09-02
- abeson # failure in job https://hydra.nixos.org/build/233210579 at 2023-09-02
- abides # failure in job https://hydra.nixos.org/build/233260056 at 2023-09-02
- abnf # failure in job https://hydra.nixos.org/build/233238839 at 2023-09-02
- AbortT-transformers # failure in job https://hydra.nixos.org/build/233210345 at 2023-09-02
- abstract-par-accelerate # failure in job https://hydra.nixos.org/build/296049870 at 2025-05-02
- abt # failure in job https://hydra.nixos.org/build/233201301 at 2023-09-02
- AC-BuildPlatform # failure in job https://hydra.nixos.org/build/233219130 at 2023-09-02
- AC-EasyRaster-GTK # failure in job https://hydra.nixos.org/build/233226232 at 2023-09-02
- AC-HalfInteger # failure in job https://hydra.nixos.org/build/233239266 at 2023-09-02
- ac-machine # failure in job https://hydra.nixos.org/build/233253535 at 2023-09-02
- AC-MiniTest # failure in job https://hydra.nixos.org/build/233216015 at 2023-09-02
- AC-Terminal # failure in job https://hydra.nixos.org/build/233192747 at 2023-09-02
- AC-VanillaArray # failure in job https://hydra.nixos.org/build/233216801 at 2023-09-02
- accelerate # failure in job https://hydra.nixos.org/build/307516269 at 2025-09-19
- accelerate-fftw # failure in job https://hydra.nixos.org/build/296049868 at 2025-05-02
- accelerate-random # failure in job https://hydra.nixos.org/build/296049869 at 2025-05-02
- accelerate-utility # failure in job https://hydra.nixos.org/build/296049871 at 2025-05-02
- accentuateus # failure in job https://hydra.nixos.org/build/233253627 at 2023-09-02
- access-time # failure in job https://hydra.nixos.org/build/233246051 at 2023-09-02
- accuerr # failure in job https://hydra.nixos.org/build/233220965 at 2023-09-02
- achille # failure in job https://hydra.nixos.org/build/233236118 at 2023-09-02
- acid-state-dist # failure in job https://hydra.nixos.org/build/233216067 at 2023-09-02
- acid-state-tls # failure in job https://hydra.nixos.org/build/233211210 at 2023-09-02
- ACME # failure in job https://hydra.nixos.org/build/233229388 at 2023-09-02
- acme-all-monad # failure in job https://hydra.nixos.org/build/233197817 at 2023-09-02
- acme-comonad # failure in job https://hydra.nixos.org/build/233249166 at 2023-09-02
- acme-dont # failure in job https://hydra.nixos.org/build/233226392 at 2023-09-02
- acme-flipping-tables # failure in job https://hydra.nixos.org/build/233222456 at 2023-09-02
- acme-hq9plus # failure in job https://hydra.nixos.org/build/233248868 at 2023-09-02
- acme-http # failure in job https://hydra.nixos.org/build/233203112 at 2023-09-02
- acme-inator # failure in job https://hydra.nixos.org/build/233211599 at 2023-09-02
- acme-io # failure in job https://hydra.nixos.org/build/233224872 at 2023-09-02
- acme-kitchen-sink # failure in job https://hydra.nixos.org/build/233222038 at 2023-09-02
- acme-left-pad # failure in job https://hydra.nixos.org/build/233197685 at 2023-09-02
- acme-memorandom # failure in job https://hydra.nixos.org/build/233222926 at 2023-09-02
- acme-miscorder # failure in job https://hydra.nixos.org/build/233209957 at 2023-09-02
- acme-mutable-package # failure in job https://hydra.nixos.org/build/233213349 at 2023-09-02
- acme-not-a-joke # failure in job https://hydra.nixos.org/build/259604911 at 2024-05-15
- acme-now # failure in job https://hydra.nixos.org/build/233243289 at 2023-09-02
- acme-numbersystem # failure in job https://hydra.nixos.org/build/233208106 at 2023-09-02
- acme-operators # failure in job https://hydra.nixos.org/build/233248282 at 2023-09-02
- acme-schoenfinkel # failure in job https://hydra.nixos.org/build/233231988 at 2023-09-02
- acme-strfry # failure in job https://hydra.nixos.org/build/233242092 at 2023-09-02
- acme-stringly-typed # failure in job https://hydra.nixos.org/build/233192651 at 2023-09-02
- acme-strtok # failure in job https://hydra.nixos.org/build/252719190 at 2024-03-16
- acme-this # failure in job https://hydra.nixos.org/build/233230930 at 2023-09-02
- acme-zalgo # failure in job https://hydra.nixos.org/build/233216155 at 2023-09-02
- acme-zero # failure in job https://hydra.nixos.org/build/233192937 at 2023-09-02
- acousticbrainz-client # failure in job https://hydra.nixos.org/build/233192638 at 2023-09-02
- ActionKid # failure in job https://hydra.nixos.org/build/234443624 at 2023-09-13
- activehs-base # failure in job https://hydra.nixos.org/build/233254736 at 2023-09-02
- activitypub # failure in job https://hydra.nixos.org/build/233253119 at 2023-09-02
- activitystreams-aeson # failure in job https://hydra.nixos.org/build/233222522 at 2023-09-02
- Adaptive # failure in job https://hydra.nixos.org/build/233217421 at 2023-09-02
- Adaptive-Blaisorblade # failure in job https://hydra.nixos.org/build/233229679 at 2023-09-02
- adaptive-containers # failure in job https://hydra.nixos.org/build/233243181 at 2023-09-02
- adaptive-tuple # failure in job https://hydra.nixos.org/build/233244881 at 2023-09-02
- adb # failure in job https://hydra.nixos.org/build/233193888 at 2023-09-02
- addy # failure in job https://hydra.nixos.org/build/233240594 at 2023-09-02
- adhoc-fixtures-hspec # failure in job https://hydra.nixos.org/build/252725981 at 2024-03-16
- adjunction # failure in job https://hydra.nixos.org/build/233237774 at 2023-09-02
- adobe-swatch-exchange # failure in job https://hydra.nixos.org/build/233255779 at 2023-09-02
- adp-multi # failure in job https://hydra.nixos.org/build/233256331 at 2023-09-02
- adtrees # failure in job https://hydra.nixos.org/build/233192320 at 2023-09-02
- AERN-Basics # failure in job https://hydra.nixos.org/build/233246999 at 2023-09-02
- aeson-applicative # failure in job https://hydra.nixos.org/build/233213824 at 2023-09-02
- aeson-bson # failure in job https://hydra.nixos.org/build/233201964 at 2023-09-02
- aeson-commit # failure in job https://hydra.nixos.org/build/233198515 at 2023-09-02
- aeson-compat # failure in job https://hydra.nixos.org/build/233208257 at 2023-09-02
- aeson-decode # failure in job https://hydra.nixos.org/build/233251197 at 2023-09-02
- aeson-default # failure in job https://hydra.nixos.org/build/233203427 at 2023-09-02
- aeson-dependent-sum # failure in job https://hydra.nixos.org/build/233223384 at 2023-09-02
- aeson-deriving # failure in job https://hydra.nixos.org/build/233247857 at 2023-09-02
- aeson-diff-generic # failure in job https://hydra.nixos.org/build/233213146 at 2023-09-02
- aeson-filthy # failure in job https://hydra.nixos.org/build/233198472 at 2023-09-02
- aeson-flat # failure in job https://hydra.nixos.org/build/233220787 at 2023-09-02
- aeson-flatten # failure in job https://hydra.nixos.org/build/233242954 at 2023-09-02
- aeson-flowtyped # failure in job https://hydra.nixos.org/build/233245878 at 2023-09-02
- aeson-generic-default # failure in job https://hydra.nixos.org/build/307516312 at 2025-09-19
- aeson-generics-typescript # failure in job https://hydra.nixos.org/build/245703304 at 2024-01-07
- aeson-injector # failure in job https://hydra.nixos.org/build/233200351 at 2023-09-02
- aeson-iproute # failure in job https://hydra.nixos.org/build/295091261 at 2025-04-22
- aeson-json-ast # failure in job https://hydra.nixos.org/build/233249406 at 2023-09-02
- aeson-lens # failure in job https://hydra.nixos.org/build/233235357 at 2023-09-02
- aeson-modern-tojson # failure in job https://hydra.nixos.org/build/233202149 at 2023-09-02
- aeson-options # failure in job https://hydra.nixos.org/build/233245051 at 2023-09-02
- aeson-parsec-picky # failure in job https://hydra.nixos.org/build/233222117 at 2023-09-02
- aeson-picker # failure in job https://hydra.nixos.org/build/295091281 at 2025-04-22
- aeson-prefix # failure in job https://hydra.nixos.org/build/233215656 at 2023-09-02
- aeson-schema # failure in job https://hydra.nixos.org/build/233229960 at 2023-09-02
- aeson-single-field # failure in job https://hydra.nixos.org/build/233247758 at 2023-09-02
- aeson-smart # failure in job https://hydra.nixos.org/build/233197032 at 2023-09-02
- aeson-streams # failure in job https://hydra.nixos.org/build/233191057 at 2023-09-02
- aeson-t # failure in job https://hydra.nixos.org/build/233243634 at 2023-09-02
- aeson-toolkit # failure in job https://hydra.nixos.org/build/233248208 at 2023-09-02
- aeson-utils # failure in job https://hydra.nixos.org/build/233238768 at 2023-09-02
- aeson-with # failure in job https://hydra.nixos.org/build/233206342 at 2023-09-02
- affection # failure in job https://hydra.nixos.org/build/233213076 at 2023-09-02
- affine-invariant-ensemble-mcmc # failure in job https://hydra.nixos.org/build/233237176 at 2023-09-02
- ag-pictgen # failure in job https://hydra.nixos.org/build/233252615 at 2023-09-02
- Agata # failure in job https://hydra.nixos.org/build/233221026 at 2023-09-02
- Agda-executable # failure in job https://hydra.nixos.org/build/233332629 at 2023-09-02
- agda-language-server # failure in job https://hydra.nixos.org/build/233332694 at 2023-09-02
- agda-snippets # failure in job https://hydra.nixos.org/build/233332749 at 2023-09-02
- agda-unused # failure in job https://hydra.nixos.org/build/233332657 at 2023-09-02
- agda2train # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/239247619 at 2023-11-10
- AGI # failure in job https://hydra.nixos.org/build/233211491 at 2023-09-02
- AhoCorasick # failure in job https://hydra.nixos.org/build/233204899 at 2023-09-02
- aig # failure in job https://hydra.nixos.org/build/233199755 at 2023-09-02
- aip-version # failure in job https://hydra.nixos.org/build/267985101 at 2024-07-31
- air-extra # failure in job https://hydra.nixos.org/build/233250519 at 2023-09-02
- air-th # failure in job https://hydra.nixos.org/build/233228206 at 2023-09-02
- airbrake # failure in job https://hydra.nixos.org/build/233199319 at 2023-09-02
- airgql # failure in job https://hydra.nixos.org/build/315094487 at 2025-11-29
- airship # failure in job https://hydra.nixos.org/build/233239011 at 2023-09-02
- airtable-api # failure in job https://hydra.nixos.org/build/233228482 at 2023-09-02
- ajhc # failure in job https://hydra.nixos.org/build/233197894 at 2023-09-02
- al # failure in job https://hydra.nixos.org/build/252733710 at 2024-03-16
- AlanDeniseEricLauren # failure in job https://hydra.nixos.org/build/233235486 at 2023-09-02
- alerta # failure in job https://hydra.nixos.org/build/233203379 at 2023-09-02
- alerts # failure in job https://hydra.nixos.org/build/233251101 at 2023-09-02
- alex-prelude # failure in job https://hydra.nixos.org/build/233238387 at 2023-09-02
- alfred # failure in job https://hydra.nixos.org/build/233227316 at 2023-09-02
- alga # failure in job https://hydra.nixos.org/build/233252723 at 2023-09-02
- algebra-dag # failure in job https://hydra.nixos.org/build/233191945 at 2023-09-02
- algebraic # failure in job https://hydra.nixos.org/build/296049876 at 2025-05-02
- algebraic-prelude # failure in job https://hydra.nixos.org/build/233197561 at 2023-09-02
- algo-s # failure in job https://hydra.nixos.org/build/233221988 at 2023-09-02
- AlgorithmW # failure in job https://hydra.nixos.org/build/233245254 at 2023-09-02
- align-affine # failure in job https://hydra.nixos.org/build/233230079 at 2023-09-02
- align-equal # failure in job https://hydra.nixos.org/build/295091309 at 2025-04-22
- align-text # failure in job https://hydra.nixos.org/build/233215779 at 2023-09-02
- allen # failure in job https://hydra.nixos.org/build/252715705 at 2024-03-16
- alloy # failure in job https://hydra.nixos.org/build/252726555 at 2024-03-16
- ally-invest # failure in job https://hydra.nixos.org/build/233236224 at 2023-09-02
- alpaca-netcode # failure in job https://hydra.nixos.org/build/233239392 at 2023-09-02
- alpha # failure in job https://hydra.nixos.org/build/309811728 at 2025-10-15
- alphachar # failure in job https://hydra.nixos.org/build/252722667 at 2024-03-16
- alpino-tools # failure in job https://hydra.nixos.org/build/233236168 at 2023-09-02
- alsa # failure in job https://hydra.nixos.org/build/233250059 at 2023-09-02
- alsa-midi # failure in job https://hydra.nixos.org/build/233245836 at 2023-09-02
- altcomposition # failure in job https://hydra.nixos.org/build/233203544 at 2023-09-02
- alternative-extra # failure in job https://hydra.nixos.org/build/233222901 at 2023-09-02
- alternative-io # failure in job https://hydra.nixos.org/build/233259524 at 2023-09-02
- altfloat # failure in job https://hydra.nixos.org/build/233197874 at 2023-09-02
- alure # failure in job https://hydra.nixos.org/build/233230238 at 2023-09-02
- amazon-emailer # failure in job https://hydra.nixos.org/build/233220018 at 2023-09-02
- amazon-products # failure in job https://hydra.nixos.org/build/233193877 at 2023-09-02
- amazonka-contrib-rds-utils # failure building library in job https://hydra.nixos.org/build/237240275 at 2023-10-21
- amazonka-dynamodb # failure in job https://hydra.nixos.org/build/295091412 at 2025-04-22
- amazonka-dynamodb-streams # failure in job https://hydra.nixos.org/build/295091422 at 2025-04-22
- amazonka-iam-policy # failure in job https://hydra.nixos.org/build/233233098 at 2023-09-02
- amazonka-mtl # failure in job https://hydra.nixos.org/build/295091544 at 2025-04-22
- amazonka-s3-encryption # failure in job https://hydra.nixos.org/build/295091601 at 2025-04-22
- AMI # failure in job https://hydra.nixos.org/build/233232505 at 2023-09-02
- ampersand # failure in job https://hydra.nixos.org/build/315094859 at 2025-11-29
- amqp-conduit # failure in job https://hydra.nixos.org/build/233228080 at 2023-09-02
- amqp-streamly # failure in job https://hydra.nixos.org/build/295091669 at 2025-04-22
- amqp-worker # failure in job https://hydra.nixos.org/build/236675859 at 2023-10-04
- amrun # failure in job https://hydra.nixos.org/build/295091655 at 2025-04-22
- analyze # failure in job https://hydra.nixos.org/build/233251441 at 2023-09-02
- anansi # failure in job https://hydra.nixos.org/build/273451545 at 2024-10-01
- anansi-pandoc # failure in job https://hydra.nixos.org/build/233252389 at 2023-09-02
- android # failure in job https://hydra.nixos.org/build/233222148 at 2023-09-02
- android-activity # failure in job https://hydra.nixos.org/build/233203400 at 2023-09-02
- android-lint-summary # failure in job https://hydra.nixos.org/build/233194598 at 2023-09-02
- angel # failure in job https://hydra.nixos.org/build/233191548 at 2023-09-02
- angle # failure in job https://hydra.nixos.org/build/233203144 at 2023-09-02
- animalcase # failure in job https://hydra.nixos.org/build/233191888 at 2023-09-02
- Animas # failure in job https://hydra.nixos.org/build/233256636 at 2023-09-02
- animascii # failure in job https://hydra.nixos.org/build/233211290 at 2023-09-02
- animate # failure in job https://hydra.nixos.org/build/233243661 at 2023-09-02
- anitomata-aseprite # failure in job https://hydra.nixos.org/build/255675501 at 2024-04-16
- anki-tools # failure in job https://hydra.nixos.org/build/233205129 at 2023-09-02
- annotated-fix # failure in job https://hydra.nixos.org/build/233241215 at 2023-09-02
- anonymous-sums # failure in job https://hydra.nixos.org/build/233222773 at 2023-09-02
- ansi-pretty # failure in job https://hydra.nixos.org/build/233204335 at 2023-09-02
- antfarm # failure in job https://hydra.nixos.org/build/233225661 at 2023-09-02
- antigate # failure in job https://hydra.nixos.org/build/233194081 at 2023-09-02
- antimirov # failure in job https://hydra.nixos.org/build/233210987 at 2023-09-02
- antiope-athena # failure building library in job https://hydra.nixos.org/build/237246022 at 2023-10-21
- antiope-es # failure building library in job https://hydra.nixos.org/build/237237240 at 2023-10-21
- antiope-messages # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237239158 at 2023-10-21
- antiope-optparse-applicative # failure in job https://hydra.nixos.org/build/237235649 at 2023-10-21
- antiope-sns # failure in job https://hydra.nixos.org/build/237241347 at 2023-10-21
- antiope-sqs # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237241846 at 2023-10-21
- antiope-swf # failure in job https://hydra.nixos.org/build/233206369 at 2023-09-02
- antiquoter # failure in job https://hydra.nixos.org/build/233221962 at 2023-09-02
- antisplice # failure in job https://hydra.nixos.org/build/233238144 at 2023-09-02
- antlr-haskell # failure in job https://hydra.nixos.org/build/233208196 at 2023-09-02
- anydbm # failure in job https://hydra.nixos.org/build/233195447 at 2023-09-02
- Aoide # failure in job https://hydra.nixos.org/build/233239286 at 2023-09-02
- aop-prelude # failure in job https://hydra.nixos.org/build/295091671 at 2025-04-22
- aosd # failure in job https://hydra.nixos.org/build/233207331 at 2023-09-02
- apache-md5 # failure in job https://hydra.nixos.org/build/233193946 at 2023-09-02
- apart # failure in job https://hydra.nixos.org/build/233219668 at 2023-09-02
- api-builder # failure in job https://hydra.nixos.org/build/233205755 at 2023-09-02
- api-maker # failure in job https://hydra.nixos.org/build/252711269 at 2024-03-16
- api-rpc-factom # failure in job https://hydra.nixos.org/build/233198474 at 2023-09-02
- api-tools # failure in job https://hydra.nixos.org/build/252720262 at 2024-03-16
- apns-http2 # failure in job https://hydra.nixos.org/build/233248620 at 2023-09-02
- app-lens # failure in job https://hydra.nixos.org/build/233193948 at 2023-09-02
- app-settings # failure in job https://hydra.nixos.org/build/252726841 at 2024-03-16
- appc # failure in job https://hydra.nixos.org/build/233200853 at 2023-09-02
- appendful-persistent # failure in job https://hydra.nixos.org/build/233249677 at 2023-09-02
- apple # failure in job https://hydra.nixos.org/build/269877626 at 2024-08-19
- applicative-fail # failure in job https://hydra.nixos.org/build/233237624 at 2023-09-02
- applicative-parsec # failure in job https://hydra.nixos.org/build/233221615 at 2023-09-02
- applicative-quoters # failure in job https://hydra.nixos.org/build/233191023 at 2023-09-02
- applicative-splice # failure in job https://hydra.nixos.org/build/233202183 at 2023-09-02
- apply-unordered # failure in job https://hydra.nixos.org/build/233238590 at 2023-09-02
- approveapi # failure in job https://hydra.nixos.org/build/233197597 at 2023-09-02
- approx # failure in job https://hydra.nixos.org/build/233236548 at 2023-09-02
- ApproxFun-hs # failure in job https://hydra.nixos.org/build/233247678 at 2023-09-02
- arb-fft # failure in job https://hydra.nixos.org/build/233201190 at 2023-09-02
- arbb-vm # failure in job https://hydra.nixos.org/build/233252062 at 2023-09-02
- arbor-lru-cache # failure in job https://hydra.nixos.org/build/233204554 at 2023-09-02
- arbor-monad-counter # failure in job https://hydra.nixos.org/build/233220436 at 2023-09-02
- arbor-monad-logger # failure in job https://hydra.nixos.org/build/233228659 at 2023-09-02
- arbor-monad-metric # failure in job https://hydra.nixos.org/build/233236175 at 2023-09-02
- arbor-postgres # failure in job https://hydra.nixos.org/build/233232935 at 2023-09-02
- arch-hs # failure in job https://hydra.nixos.org/build/233225768 at 2023-09-02
- archiver # failure in job https://hydra.nixos.org/build/233245795 at 2023-09-02
- archlinux # failure in job https://hydra.nixos.org/build/233202430 at 2023-09-02
- archnews # failure in job https://hydra.nixos.org/build/233192480 at 2023-09-02
- arena # failure in job https://hydra.nixos.org/build/233252500 at 2023-09-02
- argo # failure in job https://hydra.nixos.org/build/233216252 at 2023-09-02
- argparser # failure in job https://hydra.nixos.org/build/233222416 at 2023-09-02
- arguedit # failure in job https://hydra.nixos.org/build/233211367 at 2023-09-02
- arion # failure in job https://hydra.nixos.org/build/233254120 at 2023-09-02
- armada # failure in job https://hydra.nixos.org/build/234462335 at 2023-09-13
- armor # failure in job https://hydra.nixos.org/build/233241366 at 2023-09-02
- arpa # failure in job https://hydra.nixos.org/build/233200212 at 2023-09-02
- arpack # failure in job https://hydra.nixos.org/build/233240937 at 2023-09-02
- array-list # failure in job https://hydra.nixos.org/build/233197669 at 2023-09-02
- array-mhs # failure in job https://hydra.nixos.org/build/307610290 at 2025-09-19
- array-primops # failure in job https://hydra.nixos.org/build/233191559 at 2023-09-02
- arrayfire # failure in job https://hydra.nixos.org/build/233225004 at 2023-09-02
- ArrayRef # failure in job https://hydra.nixos.org/build/233196329 at 2023-09-02
- arrow-improve # failure in job https://hydra.nixos.org/build/233239994 at 2023-09-02
- arrow-list # failure in job https://hydra.nixos.org/build/233249150 at 2023-09-02
- arrowapply-utils # failure in job https://hydra.nixos.org/build/233192063 at 2023-09-02
- arrowp # failure in job https://hydra.nixos.org/build/233255376 at 2023-09-02
- arrowp-qq # failure in job https://hydra.nixos.org/build/233251384 at 2023-09-02
- ArrowVHDL # failure in job https://hydra.nixos.org/build/233206149 at 2023-09-02
- artery # failure in job https://hydra.nixos.org/build/233206830 at 2023-09-02
- artifact # failure in job https://hydra.nixos.org/build/233233300 at 2023-09-02
- arxiv-client # failure in job https://hydra.nixos.org/build/315094785 at 2025-11-29
- asap # failure in job https://hydra.nixos.org/build/233214968 at 2023-09-02
- ascii-caseless # failure in job https://hydra.nixos.org/build/307516784 at 2025-09-19
- ascii-flatten # failure in job https://hydra.nixos.org/build/233229168 at 2023-09-02
- ascii-group # failure in job https://hydra.nixos.org/build/307516787 at 2025-09-19
- ascii-string # failure in job https://hydra.nixos.org/build/233249978 at 2023-09-02
- ascii-vector-avc # failure in job https://hydra.nixos.org/build/233208533 at 2023-09-02
- ascii85-conduit # failure in job https://hydra.nixos.org/build/233235427 at 2023-09-02
- ascii85x # failure in job https://hydra.nixos.org/build/302801241 at 2025-07-27
- asciidiagram # failure in job https://hydra.nixos.org/build/233259020 at 2023-09-02
- asif # failure in job https://hydra.nixos.org/build/233251551 at 2023-09-02
- asil # failure in job https://hydra.nixos.org/build/233204081 at 2023-09-02
- asn1-ber-syntax # failure in job https://hydra.nixos.org/build/233235772 at 2023-09-02
- asn1-codec # failure in job https://hydra.nixos.org/build/233217242 at 2023-09-02
- asn1-data # failure in job https://hydra.nixos.org/build/233252918 at 2023-09-02
- assert # failure in job https://hydra.nixos.org/build/233257692 at 2023-09-02
- assertions # failure in job https://hydra.nixos.org/build/233215277 at 2023-09-02
- asset-map # failure in job https://hydra.nixos.org/build/233218566 at 2023-09-02
- assoc-list # failure in job https://hydra.nixos.org/build/233224148 at 2023-09-02
- assoc-listlike # failure in job https://hydra.nixos.org/build/233200483 at 2023-09-02
- assumpta # failure in job https://hydra.nixos.org/build/233245580 at 2023-09-02
- assumpta-core # failure in job https://hydra.nixos.org/build/252727584 at 2024-03-16
- ast-monad # failure in job https://hydra.nixos.org/build/233192822 at 2023-09-02
- astar-monad # failure in job https://hydra.nixos.org/build/252720647 at 2024-03-16
- astrds # failure in job https://hydra.nixos.org/build/233220701 at 2023-09-02
- astro # failure in job https://hydra.nixos.org/build/233243443 at 2023-09-02
- async-combinators # failure in job https://hydra.nixos.org/build/233198111 at 2023-09-02
- async-dejafu # failure in job https://hydra.nixos.org/build/233254234 at 2023-09-02
- async-manager # failure in job https://hydra.nixos.org/build/233246552 at 2023-09-02
- async-timer # failure in job https://hydra.nixos.org/build/233200611 at 2023-09-02
- asynchronous-exceptions # failure in job https://hydra.nixos.org/build/233218419 at 2023-09-02
- AsyncRattus # failure in job https://hydra.nixos.org/build/307515919 at 2025-09-19
- aterm # failure in job https://hydra.nixos.org/build/233226675 at 2023-09-02
- atlassian-connect-descriptor # failure in job https://hydra.nixos.org/build/233249503 at 2023-09-02
- atndapi # failure in job https://hydra.nixos.org/build/233223849 at 2023-09-02
- atom # failure in job https://hydra.nixos.org/build/233193561 at 2023-09-02
- atomic-css # failure in job https://hydra.nixos.org/build/307516853 at 2025-09-19
- atomic-modify # failure in job https://hydra.nixos.org/build/233220400 at 2023-09-02
- atomic-modify-general # failure in job https://hydra.nixos.org/build/295091770 at 2025-04-22
- atomic-primops-vector # failure in job https://hydra.nixos.org/build/233228512 at 2023-09-02
- atomo # failure in job https://hydra.nixos.org/build/233257502 at 2023-09-02
- ats-format # failure in job https://hydra.nixos.org/build/233254532 at 2023-09-02
- ats-pkg # failure in job https://hydra.nixos.org/build/233232354 at 2023-09-02
- ats-setup # failure in job https://hydra.nixos.org/build/233240435 at 2023-09-02
- ats-storable # failure in job https://hydra.nixos.org/build/233242765 at 2023-09-02
- attempt # failure in job https://hydra.nixos.org/build/233233073 at 2023-09-02
- attenuation # failure in job https://hydra.nixos.org/build/252721241 at 2024-03-16
- attic # failure in job https://hydra.nixos.org/build/311050775 at 2025-11-02
- attic-schedule # failure in job https://hydra.nixos.org/build/233249781 at 2023-09-02
- atto-lisp # failure in job https://hydra.nixos.org/build/233222679 at 2023-09-02
- AttoBencode # failure in job https://hydra.nixos.org/build/233198079 at 2023-09-02
- attomail # failure in job https://hydra.nixos.org/build/233225937 at 2023-09-02
- attoparsec-csv # failure in job https://hydra.nixos.org/build/233245402 at 2023-09-02
- attoparsec-run # failure in job https://hydra.nixos.org/build/295091785 at 2025-04-22
- attoparsec-text # failure in job https://hydra.nixos.org/build/233227820 at 2023-09-02
- attoparsec-trans # failure in job https://hydra.nixos.org/build/233203168 at 2023-09-02
- attosplit # failure in job https://hydra.nixos.org/build/233203118 at 2023-09-02
- Attrac # failure in job https://hydra.nixos.org/build/234459267 at 2023-09-13
- augeas # failure in job https://hydra.nixos.org/build/233228677 at 2023-09-02
- augur # failure in job https://hydra.nixos.org/build/233223910 at 2023-09-02
- aur # failure in job https://hydra.nixos.org/build/233239429 at 2023-09-02
- aur-api # failure in job https://hydra.nixos.org/build/233237328 at 2023-09-02
- Aurochs # failure in job https://hydra.nixos.org/build/233244773 at 2023-09-02
- authenticate-ldap # failure in job https://hydra.nixos.org/build/233216602 at 2023-09-02
- authinfo-hs # failure in job https://hydra.nixos.org/build/233224767 at 2023-09-02
- auto # failure in job https://hydra.nixos.org/build/233211088 at 2023-09-02
- auto-export # failure in job https://hydra.nixos.org/build/315094848 at 2025-11-29
- auto-extract # failure in job https://hydra.nixos.org/build/315094847 at 2025-11-29
- auto-import # failure in job https://hydra.nixos.org/build/315094870 at 2025-11-29
- auto-split # failure in job https://hydra.nixos.org/build/295091795 at 2025-04-22
- autoapply # failure in job https://hydra.nixos.org/build/295091805 at 2025-04-22
- autom # failure in job https://hydra.nixos.org/build/234461198 at 2023-09-13
- automata # failure in job https://hydra.nixos.org/build/295091890 at 2025-04-22
- autonix-deps # failure in job https://hydra.nixos.org/build/233258269 at 2023-09-02
- autopack # failure in job https://hydra.nixos.org/build/233215025 at 2023-09-02
- autoproc # failure in job https://hydra.nixos.org/build/252730569 at 2024-03-16
- avatar-generator # failure in job https://hydra.nixos.org/build/233214253 at 2023-09-02
- aviation-units # failure in job https://hydra.nixos.org/build/233245762 at 2023-09-02
- avr-shake # failure in job https://hydra.nixos.org/build/233223187 at 2023-09-02
- avro # failure in job https://hydra.nixos.org/build/307610307 at 2025-09-19
- avro-piper # failure in job https://hydra.nixos.org/build/233197510 at 2023-09-02
- avwx # failure in job https://hydra.nixos.org/build/233258167 at 2023-09-02
- awesome-prelude # failure in job https://hydra.nixos.org/build/233232761 at 2023-09-02
- awesomium-raw # failure in job https://hydra.nixos.org/build/233241036 at 2023-09-02
- aws-academy-grade-exporter # failure in job https://hydra.nixos.org/build/302801316 at 2025-07-27
- aws-cloudfront-signed-cookies # failure in job https://hydra.nixos.org/build/252736035 at 2024-03-16
- aws-cloudfront-signer # failure in job https://hydra.nixos.org/build/233194723 at 2023-09-02
- aws-easy # failure building library in job https://hydra.nixos.org/build/237244335 at 2023-10-21
- aws-ec2 # failure in job https://hydra.nixos.org/build/233201556 at 2023-09-02
- aws-ec2-knownhosts # failure in job https://hydra.nixos.org/build/233237078 at 2023-09-02
- aws-eventbridge-cron # failure in job https://hydra.nixos.org/build/315094885 at 2025-11-29
- aws-general # failure in job https://hydra.nixos.org/build/233211106 at 2023-09-02
- aws-lambda-runtime # failure in job https://hydra.nixos.org/build/233195123 at 2023-09-02
- aws-larpi # failure in job https://hydra.nixos.org/build/233246059 at 2023-09-02
- aws-performance-tests # failure in job https://hydra.nixos.org/build/233259271 at 2023-09-02
- aws-route53 # failure in job https://hydra.nixos.org/build/233218200 at 2023-09-02
- aws-sdk-text-converter # failure in job https://hydra.nixos.org/build/233237525 at 2023-09-02
- aws-secrets # failure in job https://hydra.nixos.org/build/307516873 at 2025-09-19
- aws-ses-easy # failure building library in job https://hydra.nixos.org/build/237249788 at 2023-10-21
- aws-simple # failure building library in job https://hydra.nixos.org/build/237242730 at 2023-10-21
- awsspendsummary # failure in job https://hydra.nixos.org/build/295091850 at 2025-04-22
- axel # failure in job https://hydra.nixos.org/build/295122804 at 2025-04-22
- aztecs-asset # failure in job https://hydra.nixos.org/build/295091828 at 2025-04-22
- aztecs-hierarchy # failure in job https://hydra.nixos.org/build/295091824 at 2025-04-22
- aztecs-sdl # failure in job https://hydra.nixos.org/build/295091834 at 2025-04-22
- azubi # failure in job https://hydra.nixos.org/build/233258480 at 2023-09-02
- azure-acs # failure in job https://hydra.nixos.org/build/233252578 at 2023-09-02
- azure-email # failure in job https://hydra.nixos.org/build/233255535 at 2023-09-02
- azurify # failure in job https://hydra.nixos.org/build/233239263 at 2023-09-02
- b-tree # failure in job https://hydra.nixos.org/build/295091832 at 2025-04-22
- babl # failure in job https://hydra.nixos.org/build/233204665 at 2023-09-02
- babynf # failure in job https://hydra.nixos.org/build/295091858 at 2025-04-22
- backstop # failure in job https://hydra.nixos.org/build/233223957 at 2023-09-02
- backtracking-exceptions # failure in job https://hydra.nixos.org/build/233233211 at 2023-09-02
- backward-state # failure in job https://hydra.nixos.org/build/233196922 at 2023-09-02
- bag # failure in job https://hydra.nixos.org/build/233250281 at 2023-09-02
- Baggins # failure in job https://hydra.nixos.org/build/233192786 at 2023-09-02
- bake # failure in job https://hydra.nixos.org/build/233211889 at 2023-09-02
- bamse # failure in job https://hydra.nixos.org/build/307516881 at 2025-09-19
- Bang # failure in job https://hydra.nixos.org/build/233226846 at 2023-09-02
- banwords # failure in job https://hydra.nixos.org/build/233229703 at 2023-09-02
- barbies-th # failure in job https://hydra.nixos.org/build/233251598 at 2023-09-02
- barchart # failure in job https://hydra.nixos.org/build/233216957 at 2023-09-02
- barcodes-code128 # failure in job https://hydra.nixos.org/build/233227808 at 2023-09-02
- barecheck # failure in job https://hydra.nixos.org/build/233231208 at 2023-09-02
- barrie # failure in job https://hydra.nixos.org/build/233220267 at 2023-09-02
- barrier # failure in job https://hydra.nixos.org/build/233229384 at 2023-09-02
- barrier-monad # failure in job https://hydra.nixos.org/build/233215823 at 2023-09-02
- base-compat-migrate # failure in job https://hydra.nixos.org/build/233208966 at 2023-09-02
- base-encoding # failure in job https://hydra.nixos.org/build/233232516 at 2023-09-02
- base-feature-macros # failure in job https://hydra.nixos.org/build/233212558 at 2023-09-02
- base-generics # failure in job https://hydra.nixos.org/build/233198530 at 2023-09-02
- base-io-access # failure in job https://hydra.nixos.org/build/233249224 at 2023-09-02
- base16-lens # failure in job https://hydra.nixos.org/build/233229864 at 2023-09-02
- base32-lens # failure in job https://hydra.nixos.org/build/233226670 at 2023-09-02
- base58address # failure in job https://hydra.nixos.org/build/233221633 at 2023-09-02
- base62 # failure in job https://hydra.nixos.org/build/233250040 at 2023-09-02
- base64-conduit # failure in job https://hydra.nixos.org/build/233197196 at 2023-09-02
- base64-lens # failure in job https://hydra.nixos.org/build/233252600 at 2023-09-02
- based # failure in job https://hydra.nixos.org/build/233211900 at 2023-09-02
- basement-cd # failure in job https://hydra.nixos.org/build/233191991 at 2023-09-02
- basen # failure in job https://hydra.nixos.org/build/233210680 at 2023-09-02
- basex-client # failure in job https://hydra.nixos.org/build/233214592 at 2023-09-02
- bash # failure in job https://hydra.nixos.org/build/252719390 at 2024-03-16
- basic-gps # failure in job https://hydra.nixos.org/build/252718385 at 2024-03-16
- basics # failure in job https://hydra.nixos.org/build/236678238 at 2023-10-04
- baskell # failure in job https://hydra.nixos.org/build/233246705 at 2023-09-02
- battlenet # failure in job https://hydra.nixos.org/build/233260076 at 2023-09-02
- battleplace # failure in job https://hydra.nixos.org/build/233230199 at 2023-09-02
- bazel-coverage-report-renderer # failure in job https://hydra.nixos.org/build/233243746 at 2023-09-02
- bbcode # failure in job https://hydra.nixos.org/build/236693854 at 2023-10-04
- BCMtools # failure in job https://hydra.nixos.org/build/233250221 at 2023-09-02
- bdd # failure in job https://hydra.nixos.org/build/233248150 at 2023-09-02
- bdelta # failure in job https://hydra.nixos.org/build/233214765 at 2023-09-02
- bdo # failure in job https://hydra.nixos.org/build/233216486 at 2023-09-02
- beam # failure in job https://hydra.nixos.org/build/233213313 at 2023-09-02
- beam-automigrate # failure in job https://hydra.nixos.org/build/282936134 at 2024-12-24
- beam-mysql # failure in job https://hydra.nixos.org/build/233253237 at 2023-09-02
- beam-newtype-field # failure in job https://hydra.nixos.org/build/233206317 at 2023-09-02
- beamable # failure in job https://hydra.nixos.org/build/233211619 at 2023-09-02
- bearlibterminal # failure in job https://hydra.nixos.org/build/295091877 at 2025-04-22
- bech32 # failure in job https://hydra.nixos.org/build/233194823 at 2023-09-02
- beeminder-api # failure in job https://hydra.nixos.org/build/259970664 at 2024-05-19
- Befunge93 # failure in job https://hydra.nixos.org/build/233226751 at 2023-09-02
- bench-graph # failure in job https://hydra.nixos.org/build/233239830 at 2023-09-02
- BenchmarkHistory # failure in job https://hydra.nixos.org/build/233213179 at 2023-09-02
- bencodex # failure in job https://hydra.nixos.org/build/233203593 at 2023-09-02
- bencoding-lens # failure in job https://hydra.nixos.org/build/233236760 at 2023-09-02
- berkeleydb # failure in job https://hydra.nixos.org/build/233216507 at 2023-09-02
- BerkeleyDBXML # failure in job https://hydra.nixos.org/build/233216219 at 2023-09-02
- berp # failure in job https://hydra.nixos.org/build/233243070 at 2023-09-02
- bert # failure in job https://hydra.nixos.org/build/233195424 at 2023-09-02
- besout # failure in job https://hydra.nixos.org/build/233194433 at 2023-09-02
- bet # failure in job https://hydra.nixos.org/build/233205655 at 2023-09-02
- betacode # failure in job https://hydra.nixos.org/build/307516959 at 2025-09-19
- betris # failure in job https://hydra.nixos.org/build/233200110 at 2023-09-02
- bff-mono # failure in job https://hydra.nixos.org/build/252710505 at 2024-03-16
- bglib # failure in job https://hydra.nixos.org/build/265955624 at 2024-07-14
- bgmax # failure in job https://hydra.nixos.org/build/233222709 at 2023-09-02
- bgzf # failure in job https://hydra.nixos.org/build/233224580 at 2023-09-02
- bibdb # failure in job https://hydra.nixos.org/build/233210682 at 2023-09-02
- bidi-icu # failure in job https://hydra.nixos.org/build/233257520 at 2023-09-02
- bidirectional # failure in job https://hydra.nixos.org/build/233239780 at 2023-09-02
- bidirectional-instances # failure in job https://hydra.nixos.org/build/233244611 at 2023-09-02
- bidirectionalization-combined # failure in job https://hydra.nixos.org/build/233206201 at 2023-09-02
- bidispec # failure in job https://hydra.nixos.org/build/233199029 at 2023-09-02
- bidispec-extras # failure in job https://hydra.nixos.org/build/233235808 at 2023-09-02
- BiGUL # failure in job https://hydra.nixos.org/build/233258614 at 2023-09-02
- billeksah-services # failure in job https://hydra.nixos.org/build/233195677 at 2023-09-02
- binary-bits # failure in job https://hydra.nixos.org/build/233199968 at 2023-09-02
- binary-communicator # failure in job https://hydra.nixos.org/build/233248642 at 2023-09-02
- binary-derive # failure in job https://hydra.nixos.org/build/233201950 at 2023-09-02
- binary-ext # failure in job https://hydra.nixos.org/build/233247463 at 2023-09-02
- binary-indexed-tree # failure in job https://hydra.nixos.org/build/233204069 at 2023-09-02
- binary-protocol # failure in job https://hydra.nixos.org/build/233206098 at 2023-09-02
- binary-strict # failure in job https://hydra.nixos.org/build/233231473 at 2023-09-02
- binary-tree # failure in job https://hydra.nixos.org/build/233211047 at 2023-09-02
- binary-typed # failure in job https://hydra.nixos.org/build/233222741 at 2023-09-02
- bind-marshal # failure in job https://hydra.nixos.org/build/233196758 at 2023-09-02
- binder # failure in job https://hydra.nixos.org/build/295091930 at 2025-04-22
- BinderAnn # failure in job https://hydra.nixos.org/build/233197117 at 2023-09-02
- binding-core # failure in job https://hydra.nixos.org/build/233223706 at 2023-09-02
- bindings-apr # failure in job https://hydra.nixos.org/build/233212499 at 2023-09-02
- bindings-bfd # failure in job https://hydra.nixos.org/build/233210763 at 2023-09-02
- bindings-cctools # failure in job https://hydra.nixos.org/build/233216939 at 2023-09-02
- bindings-common # failure in job https://hydra.nixos.org/build/233217363 at 2023-09-02
- bindings-dc1394 # failure in job https://hydra.nixos.org/build/233200022 at 2023-09-02
- bindings-eskit # failure in job https://hydra.nixos.org/build/233223517 at 2023-09-02
- bindings-EsounD # failure in job https://hydra.nixos.org/build/233245565 at 2023-09-02
- bindings-fann # failure in job https://hydra.nixos.org/build/233232900 at 2023-09-02
- bindings-fluidsynth # failure in job https://hydra.nixos.org/build/233221612 at 2023-09-02
- bindings-friso # failure in job https://hydra.nixos.org/build/233201584 at 2023-09-02
- bindings-gpgme # failure in job https://hydra.nixos.org/build/320157224 at 2026-01-26
- bindings-gsl # failure in job https://hydra.nixos.org/build/233243360 at 2023-09-02
- bindings-hamlib # failure in job https://hydra.nixos.org/build/233259986 at 2023-09-02
- bindings-hdf5 # failure in job https://hydra.nixos.org/build/233215409 at 2023-09-02
- bindings-K8055 # failure in job https://hydra.nixos.org/build/233192986 at 2023-09-02
- bindings-levmar # failure in job https://hydra.nixos.org/build/295091959 at 2025-04-22
- bindings-libftdi # failure in job https://hydra.nixos.org/build/233256908 at 2023-09-02
- bindings-libg15 # failure in job https://hydra.nixos.org/build/233207984 at 2023-09-02
- bindings-libpci # failure in job https://hydra.nixos.org/build/233200095 at 2023-09-02
- bindings-librrd # failure in job https://hydra.nixos.org/build/233207396 at 2023-09-02
- bindings-libstemmer # failure in job https://hydra.nixos.org/build/233199518 at 2023-09-02
- bindings-libusb # failure in job https://hydra.nixos.org/build/233224303 at 2023-09-02
- bindings-libv4l2 # failure in job https://hydra.nixos.org/build/233236316 at 2023-09-02
- bindings-monetdb-mapi # failure in job https://hydra.nixos.org/build/233219584 at 2023-09-02
- bindings-mpdecimal # failure in job https://hydra.nixos.org/build/233235379 at 2023-09-02
- bindings-sc3 # failure in job https://hydra.nixos.org/build/233198459 at 2023-09-02
- bindings-sipc # failure in job https://hydra.nixos.org/build/233219411 at 2023-09-02
- bindings-wlc # failure in job https://hydra.nixos.org/build/233332720 at 2023-09-02
- bindynamic # failure in job https://hydra.nixos.org/build/295091957 at 2025-04-22
- binembed # failure in job https://hydra.nixos.org/build/233219100 at 2023-09-02
- binsm # failure in job https://hydra.nixos.org/build/233232355 at 2023-09-02
- bio # failure in job https://hydra.nixos.org/build/233225273 at 2023-09-02
- bio-sequence # failure in job https://hydra.nixos.org/build/233236140 at 2023-09-02
- biocore # failure in job https://hydra.nixos.org/build/233229466 at 2023-09-02
- biohazard # failure in job https://hydra.nixos.org/build/233249284 at 2023-09-02
- birds-of-paradise # failure in job https://hydra.nixos.org/build/295091958 at 2025-04-22
- biscuit-haskell # failure in job https://hydra.nixos.org/build/233241833 at 2023-09-02
- bisect-binary # failure in job https://hydra.nixos.org/build/233190746 at 2023-09-02
- bit-stream # failure in job https://hydra.nixos.org/build/233230353 at 2023-09-02
- bitcoin-compact-filters # failure in job https://hydra.nixos.org/build/252726935 at 2024-03-16
- bitcoin-hs # failure in job https://hydra.nixos.org/build/233251583 at 2023-09-02
- bitcoin-keys # failure in job https://hydra.nixos.org/build/233215632 at 2023-09-02
- bitcoin-rpc # failure in job https://hydra.nixos.org/build/233209694 at 2023-09-02
- bitcoin-script # failure in job https://hydra.nixos.org/build/233201469 at 2023-09-02
- bitcoin-scripting # failure in job https://hydra.nixos.org/build/252734577 at 2024-03-16
- bitcoind-rpc # failure in job https://hydra.nixos.org/build/233204068 at 2023-09-02
- bitfield # failure in job https://hydra.nixos.org/build/233235414 at 2023-09-02
- bits-atomic # failure in job https://hydra.nixos.org/build/233236099 at 2023-09-02
- bits-conduit # failure in job https://hydra.nixos.org/build/233236564 at 2023-09-02
- bits-extras # failure in job https://hydra.nixos.org/build/233217492 at 2023-09-02
- bits-show # failure in job https://hydra.nixos.org/build/252714912 at 2024-03-16
- bitset # failure in job https://hydra.nixos.org/build/233218622 at 2023-09-02
- bitspeak # failure in job https://hydra.nixos.org/build/233219582 at 2023-09-02
- BitStringRandomMonad # failure in job https://hydra.nixos.org/build/233203519 at 2023-09-02
- BitSyntax # failure in job https://hydra.nixos.org/build/233211551 at 2023-09-02
- bitx-bitcoin # failure in job https://hydra.nixos.org/build/233215594 at 2023-09-02
- bizzlelude-js # failure in job https://hydra.nixos.org/build/233224267 at 2023-09-02
- bkr # failure in job https://hydra.nixos.org/build/233246377 at 2023-09-02
- blagda # failure in job https://hydra.nixos.org/build/233332725 at 2023-09-02
- blakesum # failure in job https://hydra.nixos.org/build/233194284 at 2023-09-02
- blas # failure in job https://hydra.nixos.org/build/233244820 at 2023-09-02
- blaze-html-contrib # failure in job https://hydra.nixos.org/build/233203969 at 2023-09-02
- blaze-html-hexpat # failure in job https://hydra.nixos.org/build/233251654 at 2023-09-02
- blaze-html-truncate # failure in job https://hydra.nixos.org/build/233220789 at 2023-09-02
- blaze-json # failure in job https://hydra.nixos.org/build/233241853 at 2023-09-02
- blaze-shields # failure in job https://hydra.nixos.org/build/233214358 at 2023-09-02
- blaze-textual-native # failure in job https://hydra.nixos.org/build/233250559 at 2023-09-02
- blazeT # failure in job https://hydra.nixos.org/build/233245198 at 2023-09-02
- blindpass # failure in job https://hydra.nixos.org/build/233210012 at 2023-09-02
- bliplib # failure in job https://hydra.nixos.org/build/233195751 at 2023-09-02
- blockchain # failure in job https://hydra.nixos.org/build/233245492 at 2023-09-02
- blockhash # failure in job https://hydra.nixos.org/build/233227049 at 2023-09-02
- blockio-uring # failure in job https://hydra.nixos.org/build/302801498, https://github.com/well-typed/blockio-uring/issues/47 at 2025-07-27
- blockio-uring # https://github.com/well-typed/blockio-uring/issues/47, added 2025-07-27
- Blogdown # failure in job https://hydra.nixos.org/build/233239841 at 2023-09-02
- BlogLiterately # failure in job https://hydra.nixos.org/build/233202164 at 2023-09-02
- bloodhound-amazonka-auth # failure building library in job https://hydra.nixos.org/build/237245625 at 2023-10-21
- bloohm # failure in job https://hydra.nixos.org/build/295092039 at 2025-04-22
- bloomfilter-redis # failure in job https://hydra.nixos.org/build/233226393 at 2023-09-02
- blosum # failure in job https://hydra.nixos.org/build/233198029 at 2023-09-02
- blubber-server # failure in job https://hydra.nixos.org/build/233199530 at 2023-09-02
- bludigon # failure in job https://hydra.nixos.org/build/233248190 at 2023-09-02
- bluefin-contrib # failure in job https://hydra.nixos.org/build/315095091 at 2025-11-29
- bluefin-random # failure in job https://hydra.nixos.org/build/307517069 at 2025-09-19
- Blueprint # failure in job https://hydra.nixos.org/build/233252987 at 2023-09-02
- bluetileutils # failure in job https://hydra.nixos.org/build/233197334 at 2023-09-02
- blunk-hask-tests # failure in job https://hydra.nixos.org/build/233240288 at 2023-09-02
- boardgame # failure in job https://hydra.nixos.org/build/307517065 at 2025-09-19
- bogocopy # failure in job https://hydra.nixos.org/build/233232322 at 2023-09-02
- boilerplate # failure in job https://hydra.nixos.org/build/233252821 at 2023-09-02
- bolt # failure in job https://hydra.nixos.org/build/233234045 at 2023-09-02
- boltzmann-brain # failure in job https://hydra.nixos.org/build/233220308 at 2023-09-02
- bookhound # failure in job https://hydra.nixos.org/build/307517066 at 2025-09-19
- bookhound-format # failure in job https://hydra.nixos.org/build/233202674 at 2023-09-02
- bookkeeping # failure in job https://hydra.nixos.org/build/233241963 at 2023-09-02
- boolean-like # failure in job https://hydra.nixos.org/build/233190873 at 2023-09-02
- boolean-normal-forms # failure in job https://hydra.nixos.org/build/233220091 at 2023-09-02
- boombox # failure in job https://hydra.nixos.org/build/233249287 at 2023-09-02
- boots # failure in job https://hydra.nixos.org/build/252733526 at 2024-03-16
- boring-window-switcher # failure in job https://hydra.nixos.org/build/233252547 at 2023-09-02
- borsh # failure in job https://hydra.nixos.org/build/252718760 at 2024-03-16
- bot # failure in job https://hydra.nixos.org/build/233230089 at 2023-09-02
- botpp # failure in job https://hydra.nixos.org/build/233201674 at 2023-09-02
- bottom # failure in job https://hydra.nixos.org/build/233225154 at 2023-09-02
- bound-simple # failure in job https://hydra.nixos.org/build/233201896 at 2023-09-02
- bounded-array # failure in job https://hydra.nixos.org/build/233200854 at 2023-09-02
- bowntz # failure in job https://hydra.nixos.org/build/234439552 at 2023-09-13
- box-csv # failure in job https://hydra.nixos.org/build/233253321 at 2023-09-02
- box-tuples # failure in job https://hydra.nixos.org/build/233205890 at 2023-09-02
- bpath # failure in job https://hydra.nixos.org/build/233239160 at 2023-09-02
- braid # failure in job https://hydra.nixos.org/build/233244144 at 2023-09-02
- brain-bleep # failure in job https://hydra.nixos.org/build/233198839 at 2023-09-02
- brassica # failure in job https://hydra.nixos.org/build/233224897 at 2023-09-02
- Bravo # failure in job https://hydra.nixos.org/build/233199668 at 2023-09-02
- brians-brain # failure in job https://hydra.nixos.org/build/233201634 at 2023-09-02
- brick-calendar # failure in job https://hydra.nixos.org/build/296518003 at 2025-05-14
- brick-dropdownmenu # failure in job https://hydra.nixos.org/build/233223686 at 2023-09-02
- brick-filetree # failure in job https://hydra.nixos.org/build/233217076 at 2023-09-02
- brick-list-search # failure in job https://hydra.nixos.org/build/233193835 at 2023-09-02
- bricks-internal # failure in job https://hydra.nixos.org/build/233215572 at 2023-09-02
- brillig # failure in job https://hydra.nixos.org/build/233208148 at 2023-09-02
- brillo-algorithms # failure in job https://hydra.nixos.org/build/307517131 at 2025-09-19
- brittany # failure in job https://hydra.nixos.org/build/233234100 at 2023-09-02
- broadcast-chan-conduit # failure in job https://hydra.nixos.org/build/295092082 at 2025-04-22
- broadcast-chan-tests # failure in job https://hydra.nixos.org/build/233202605 at 2023-09-02
- broccoli # failure in job https://hydra.nixos.org/build/233191381 at 2023-09-02
- brok # failure in job https://hydra.nixos.org/build/233214233 at 2023-09-02
- broker-haskell # failure in job https://hydra.nixos.org/build/233200969 at 2023-09-02
- bronyradiogermany-common # failure in job https://hydra.nixos.org/build/233211166 at 2023-09-02
- brotli-conduit # failure in job https://hydra.nixos.org/build/233249983 at 2023-09-02
- browscap # failure in job https://hydra.nixos.org/build/233196112 at 2023-09-02
- bsd-sysctl # failure in job https://hydra.nixos.org/build/233203232 at 2023-09-02
- bson-generic # failure in job https://hydra.nixos.org/build/233237712 at 2023-09-02
- bson-generics # failure in job https://hydra.nixos.org/build/233251530 at 2023-09-02
- bson-mapping # failure in job https://hydra.nixos.org/build/233242165 at 2023-09-02
- bsparse # failure in job https://hydra.nixos.org/build/233243753 at 2023-09-02
- btree-concurrent # failure in job https://hydra.nixos.org/build/233201065 at 2023-09-02
- buffer # failure in job https://hydra.nixos.org/build/233216007 at 2023-09-02
- buffer-builder-aeson # failure in job https://hydra.nixos.org/build/233198028 at 2023-09-02
- BufferedSocket # failure in job https://hydra.nixos.org/build/233222939 at 2023-09-02
- buffet # failure in job https://hydra.nixos.org/build/233250252 at 2023-09-02
- buffon # failure in job https://hydra.nixos.org/build/233241665 at 2023-09-02
- buffon-machines # failure in job https://hydra.nixos.org/build/233257929 at 2023-09-02
- bugsnag-haskell # failure in job https://hydra.nixos.org/build/295092087 at 2025-04-22
- bugzilla # failure in job https://hydra.nixos.org/build/233223784 at 2023-09-02
- build # failure in job https://hydra.nixos.org/build/307517140 at 2025-09-19
- build-env # failure in job https://hydra.nixos.org/build/252734826 at 2024-03-16
- buildable # failure in job https://hydra.nixos.org/build/233199077 at 2023-09-02
- buildbox # failure in job https://hydra.nixos.org/build/233216315 at 2023-09-02
- builder # failure in job https://hydra.nixos.org/build/233207846 at 2023-09-02
- bunz # failure in job https://hydra.nixos.org/build/233193945 at 2023-09-02
- bureaucromancy # failure in job https://hydra.nixos.org/build/295092112 at 2025-04-22
- burst-detection # failure in job https://hydra.nixos.org/build/233254074 at 2023-09-02
- bus-pirate # failure in job https://hydra.nixos.org/build/265955589 at 2024-07-14
- buster # failure in job https://hydra.nixos.org/build/233197502 at 2023-09-02
- Buster # failure in job https://hydra.nixos.org/build/233214182 at 2023-09-02
- bustle # failure in job https://hydra.nixos.org/build/252728683 at 2024-03-16
- butter # failure in job https://hydra.nixos.org/build/233212117 at 2023-09-02
- buttplug-hs-core # failure in job https://hydra.nixos.org/build/233223928 at 2023-09-02
- bv-sized-lens # failure in job https://hydra.nixos.org/build/233237486 at 2023-09-02
- by-other-names # failure in job https://hydra.nixos.org/build/252732245 at 2024-03-16
- byte-containers # failure in job https://hydra.nixos.org/build/307610340 at 2025-09-19
- bytearray-parsing # failure in job https://hydra.nixos.org/build/233244355 at 2023-09-02
- bytepatch # failure in job https://hydra.nixos.org/build/236678340 at 2023-10-04
- bytestring-arbitrary # failure in job https://hydra.nixos.org/build/233195013 at 2023-09-02
- bytestring-builder-varword # failure in job https://hydra.nixos.org/build/295092142 at 2025-04-22
- bytestring-class # failure in job https://hydra.nixos.org/build/233230793 at 2023-09-02
- bytestring-csv # failure in job https://hydra.nixos.org/build/233215194 at 2023-09-02
- bytestring-delta # failure in job https://hydra.nixos.org/build/233207977 at 2023-09-02
- bytestring-handle # failure in job https://hydra.nixos.org/build/233192234 at 2023-09-02
- bytestring-mmap # failure in job https://hydra.nixos.org/build/252733270 at 2024-03-16
- bytestring-nums # failure in job https://hydra.nixos.org/build/307517167 at 2025-09-19
- bytestring-plain # failure in job https://hydra.nixos.org/build/233230746 at 2023-09-02
- bytestring-rematch # failure in job https://hydra.nixos.org/build/233228234 at 2023-09-02
- bytestring-show # failure in job https://hydra.nixos.org/build/233207681 at 2023-09-02
- bytestring-substring # failure in job https://hydra.nixos.org/build/233244318 at 2023-09-02
- bytestring-time # failure in job https://hydra.nixos.org/build/233190686 at 2023-09-02
- bytestring-typenats # failure in job https://hydra.nixos.org/build/233211815 at 2023-09-02
- bytestringparser # failure in job https://hydra.nixos.org/build/233227781 at 2023-09-02
- bytestringparser-temporary # failure in job https://hydra.nixos.org/build/233226655 at 2023-09-02
- bytestringreadp # failure in job https://hydra.nixos.org/build/233209066 at 2023-09-02
- bzlib-conduit-jappie # failure in job https://hydra.nixos.org/build/233210179 at 2023-09-02
- c-dsl # failure in job https://hydra.nixos.org/build/233236075 at 2023-09-02
- c-io # failure in job https://hydra.nixos.org/build/233198654 at 2023-09-02
- c-mosquitto # failure in job https://hydra.nixos.org/build/233231310 at 2023-09-02
- C-structs # failure in job https://hydra.nixos.org/build/233247498 at 2023-09-02
- c10k # failure in job https://hydra.nixos.org/build/233213264 at 2023-09-02
- c2ats # failure in job https://hydra.nixos.org/build/233220801 at 2023-09-02
- ca-patterns # failure in job https://hydra.nixos.org/build/233246800 at 2023-09-02
- cabal-audit # failure in job https://hydra.nixos.org/build/233193414 at 2023-09-02
- cabal-auto-expose # failure in job https://hydra.nixos.org/build/233195440 at 2023-09-02
- cabal-build-programs # failure in job https://hydra.nixos.org/build/257091363 at 2024-04-27
- cabal-bundle-clib # failure in job https://hydra.nixos.org/build/233199225 at 2023-09-02
- cabal-constraints # failure in job https://hydra.nixos.org/build/233214316 at 2023-09-02
- cabal-db # failure in job https://hydra.nixos.org/build/233197235 at 2023-09-02
- cabal-debian # failure in job https://hydra.nixos.org/build/233255267 at 2023-09-02
- cabal-dependency-licenses # failure in job https://hydra.nixos.org/build/233249247 at 2023-09-02
- cabal-detailed-quickcheck # failure in job https://hydra.nixos.org/build/252734084 at 2024-03-16
- cabal-dev # failure in job https://hydra.nixos.org/build/233227918 at 2023-09-02
- cabal-dir # failure in job https://hydra.nixos.org/build/233194037 at 2023-09-02
- cabal-edit # failure in job https://hydra.nixos.org/build/233244268 at 2023-09-02
- cabal-file-th # failure in job https://hydra.nixos.org/build/233224650 at 2023-09-02
- cabal-fix # failure in job https://hydra.nixos.org/build/307610355 at 2025-09-19
- cabal-ghc-dynflags # failure in job https://hydra.nixos.org/build/233244580 at 2023-09-02
- cabal-ghci # failure in job https://hydra.nixos.org/build/233239354 at 2023-09-02
- cabal-graphdeps # failure in job https://hydra.nixos.org/build/233221966 at 2023-09-02
- cabal-helper # failure in job https://hydra.nixos.org/build/252732588 at 2024-03-16
- Cabal-hooks # failure in job https://hydra.nixos.org/build/307515931 at 2025-09-19
- Cabal-ide-backend # failure in job https://hydra.nixos.org/build/233258880 at 2023-09-02
- cabal-info # failure in job https://hydra.nixos.org/build/233225001 at 2023-09-02
- cabal-install-bundle # failure in job https://hydra.nixos.org/build/233194629 at 2023-09-02
- cabal-install-ghc72 # failure in job https://hydra.nixos.org/build/233246160 at 2023-09-02
- cabal-install-ghc74 # failure in job https://hydra.nixos.org/build/233226625 at 2023-09-02
- cabal-matrix # failure in job https://hydra.nixos.org/build/311051176 at 2025-11-02
- cabal-meta # failure in job https://hydra.nixos.org/build/233194466 at 2023-09-02
- cabal-mon # failure in job https://hydra.nixos.org/build/233217320 at 2023-09-02
- cabal-nirvana # failure in job https://hydra.nixos.org/build/233222083 at 2023-09-02
- cabal-progdeps # failure in job https://hydra.nixos.org/build/233251917 at 2023-09-02
- cabal-scaffold # failure in job https://hydra.nixos.org/build/295453285 at 2025-05-02
- cabal-setup # failure in job https://hydra.nixos.org/build/233225406 at 2023-09-02
- cabal-sign # failure in job https://hydra.nixos.org/build/295092160 at 2025-04-22
- cabal-src # failure in job https://hydra.nixos.org/build/233229475 at 2023-09-02
- cabal-test-quickcheck # failure in job https://hydra.nixos.org/build/233211903 at 2023-09-02
- cabal-toolkit # failure in job https://hydra.nixos.org/build/233192328 at 2023-09-02
- cabal-uninstall # failure in job https://hydra.nixos.org/build/252739542 at 2024-03-16
- cabal-upload # failure in job https://hydra.nixos.org/build/233207791 at 2023-09-02
- cabal2doap # failure in job https://hydra.nixos.org/build/233207973 at 2023-09-02
- cabal2ebuild # failure in job https://hydra.nixos.org/build/233221248 at 2023-09-02
- cabal2ghci # failure in job https://hydra.nixos.org/build/233233018 at 2023-09-02
- cabal2json # failure in job https://hydra.nixos.org/build/233196099 at 2023-09-02
- cabalgraph # failure in job https://hydra.nixos.org/build/233241573 at 2023-09-02
- cabalish # failure in job https://hydra.nixos.org/build/233193578 at 2023-09-02
- cabalQuery # failure in job https://hydra.nixos.org/build/233211475 at 2023-09-02
- CabalSearch # failure in job https://hydra.nixos.org/build/233200817 at 2023-09-02
- cabalvchk # failure in job https://hydra.nixos.org/build/233221561 at 2023-09-02
- cabin # failure in job https://hydra.nixos.org/build/233225287 at 2023-09-02
- cabocha # failure in job https://hydra.nixos.org/build/233259983 at 2023-09-02
- cache-polysemy # failure in job https://hydra.nixos.org/build/233200602 at 2023-09-02
- cached # failure in job https://hydra.nixos.org/build/233249807 at 2023-09-02
- caching # failure in job https://hydra.nixos.org/build/233233548 at 2023-09-02
- caerbannog # failure in job https://hydra.nixos.org/build/252729101 at 2024-03-16
- cafeteria-prelude # failure in job https://hydra.nixos.org/build/233254881 at 2023-09-02
- cairo-canvas # failure in job https://hydra.nixos.org/build/252719057 at 2024-03-16
- cairo-core # failure in job https://hydra.nixos.org/build/233248151 at 2023-09-02
- cake3 # failure in job https://hydra.nixos.org/build/233231662 at 2023-09-02
- cal-layout # failure in job https://hydra.nixos.org/build/233191194 at 2023-09-02
- cal3d # failure in job https://hydra.nixos.org/build/233200357 at 2023-09-02
- calamity # failure in job https://hydra.nixos.org/build/309812724 at 2025-10-15
- caledon # failure in job https://hydra.nixos.org/build/233209888 at 2023-09-02
- calenderweek # failure in job https://hydra.nixos.org/build/233209930 at 2023-09-02
- call-alloy # failure in job https://hydra.nixos.org/build/233249056 at 2023-09-02
- call-haskell-from-anything # failure in job https://hydra.nixos.org/build/233222493 at 2023-09-02
- call-plantuml # failure in job https://hydra.nixos.org/build/233241670 at 2023-09-02
- canon # failure in job https://hydra.nixos.org/build/233235027 at 2023-09-02
- canonical-filepath # failure in job https://hydra.nixos.org/build/233233390 at 2023-09-02
- canteven-listen-http # failure in job https://hydra.nixos.org/build/233210500 at 2023-09-02
- canteven-log # failure in job https://hydra.nixos.org/build/233220599 at 2023-09-02
- canteven-parsedate # failure in job https://hydra.nixos.org/build/233218076 at 2023-09-02
- cantor # failure in job https://hydra.nixos.org/build/233204922 at 2023-09-02
- Capabilities # failure in job https://hydra.nixos.org/build/233233256 at 2023-09-02
- capataz # failure in job https://hydra.nixos.org/build/233226186 at 2023-09-02
- capped-list # failure in job https://hydra.nixos.org/build/233232627 at 2023-09-02
- capri # failure in job https://hydra.nixos.org/build/233247984 at 2023-09-02
- caps # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237244140 at 2023-10-21
- caramia # failure in job https://hydra.nixos.org/build/233257225 at 2023-09-02
- carbonara # failure in job https://hydra.nixos.org/build/233201166 at 2023-09-02
- carettah # failure in job https://hydra.nixos.org/build/233230612 at 2023-09-02
- CarneadesDSL # failure in job https://hydra.nixos.org/build/233236706 at 2023-09-02
- carte # failure in job https://hydra.nixos.org/build/233201806 at 2023-09-02
- Cartesian # failure in job https://hydra.nixos.org/build/233249956 at 2023-09-02
- cas-hashable # failure in job https://hydra.nixos.org/build/233238789 at 2023-09-02
- casadi-bindings-core # failure in job https://hydra.nixos.org/build/294582281 at 2025-04-09
- Cascade # failure in job https://hydra.nixos.org/build/233223917 at 2023-09-02
- cascading # failure in job https://hydra.nixos.org/build/233238563 at 2023-09-02
- case-insensitive-match # failure in job https://hydra.nixos.org/build/233252304 at 2023-09-02
- caseof # failure in job https://hydra.nixos.org/build/233256025 at 2023-09-02
- casr-logbook # failure in job https://hydra.nixos.org/build/233227183 at 2023-09-02
- casr-logbook-types # failure in job https://hydra.nixos.org/build/233231548 at 2023-09-02
- cassandra-cql # failure in job https://hydra.nixos.org/build/233194724 at 2023-09-02
- Cassava # failure in job https://hydra.nixos.org/build/233245677 at 2023-09-02
- cassava-conduit # failure in job https://hydra.nixos.org/build/233220495 at 2023-09-02
- cassava-generic # failure in job https://hydra.nixos.org/build/307517253 at 2025-09-19
- cassava-records # failure in job https://hydra.nixos.org/build/233259049 at 2023-09-02
- castle # failure in job https://hydra.nixos.org/build/233204027 at 2023-09-02
- catamorphism # failure in job https://hydra.nixos.org/build/233208488 at 2023-09-02
- Catana # failure in job https://hydra.nixos.org/build/233196550 at 2023-09-02
- catch-fd # failure in job https://hydra.nixos.org/build/233223935 at 2023-09-02
- category-printf # failure in job https://hydra.nixos.org/build/233216355 at 2023-09-02
- category-traced # failure in job https://hydra.nixos.org/build/233193963 at 2023-09-02
- catnplus # failure in job https://hydra.nixos.org/build/233241280 at 2023-09-02
- cautious-file # failure in job https://hydra.nixos.org/build/233218702 at 2023-09-02
- cautious-gen # failure in job https://hydra.nixos.org/build/233258367 at 2023-09-02
- cayene-lpp # failure in job https://hydra.nixos.org/build/233228959 at 2023-09-02
- cayley-client # failure in job https://hydra.nixos.org/build/233260112 at 2023-09-02
- cbf # failure in job https://hydra.nixos.org/build/320157491 at 2026-01-26
- cblrepo # failure in job https://hydra.nixos.org/build/233251926 at 2023-09-02
- CC-delcont # failure in job https://hydra.nixos.org/build/252735236 at 2024-03-16
- CC-delcont-cxe # failure in job https://hydra.nixos.org/build/233190865 at 2023-09-02
- CC-delcont-exc # failure in job https://hydra.nixos.org/build/233236141 at 2023-09-02
- CC-delcont-ref # failure in job https://hydra.nixos.org/build/233229304 at 2023-09-02
- CC-delcont-ref-tf # failure in job https://hydra.nixos.org/build/233257768 at 2023-09-02
- CCA # failure in job https://hydra.nixos.org/build/233206723 at 2023-09-02
- ccast # failure in job https://hydra.nixos.org/build/233254517 at 2023-09-02
- cci # failure in job https://hydra.nixos.org/build/233244756 at 2023-09-02
- ccnx # failure in job https://hydra.nixos.org/build/233237732 at 2023-09-02
- cdp # failure in job https://hydra.nixos.org/build/233251735 at 2023-09-02
- cedict # failure in job https://hydra.nixos.org/build/233206454 at 2023-09-02
- cef # failure in job https://hydra.nixos.org/build/233221542 at 2023-09-02
- cef3-raw # failure in job https://hydra.nixos.org/build/233216467 at 2023-09-02
- cellrenderer-cairo # failure in job https://hydra.nixos.org/build/233245838 at 2023-09-02
- cerberus # failure in job https://hydra.nixos.org/build/295092440 at 2025-04-22
- cereal-data-dword # failure in job https://hydra.nixos.org/build/295092224 at 2025-04-22
- cereal-derive # failure in job https://hydra.nixos.org/build/233229941 at 2023-09-02
- cereal-ieee754 # failure in job https://hydra.nixos.org/build/233208388 at 2023-09-02
- cereal-plus # failure in job https://hydra.nixos.org/build/233226162 at 2023-09-02
- cereal-uuid # failure in job https://hydra.nixos.org/build/295092232 at 2025-04-22
- cf # failure in job https://hydra.nixos.org/build/233244067 at 2023-09-02
- cfenv # failure in job https://hydra.nixos.org/build/233235017 at 2023-09-02
- cfg # failure in job https://hydra.nixos.org/build/233236445 at 2023-09-02
- cfn-flip # failure in job https://hydra.nixos.org/build/233221000 at 2023-09-02
- cfuture # failure in job https://hydra.nixos.org/build/307517278 at 2025-09-19
- cg # failure in job https://hydra.nixos.org/build/233212272 at 2023-09-02
- cgen # failure in job https://hydra.nixos.org/build/233198570 at 2023-09-02
- cgi-utils # failure in job https://hydra.nixos.org/build/233251773 at 2023-09-02
- cgrep # failure in job https://hydra.nixos.org/build/315095274 at 2025-11-29
- cgroup-rts-threads # failure in job https://hydra.nixos.org/build/233207888 at 2023-09-02
- chakra # failure in job https://hydra.nixos.org/build/282936173 at 2024-12-24
- chalkboard # failure in job https://hydra.nixos.org/build/234453414 at 2023-09-13
- chalmers-lava2000 # failure in job https://hydra.nixos.org/build/233239592 at 2023-09-02
- changelogged # failure in job https://hydra.nixos.org/build/233211675 at 2023-09-02
- char-qq # failure in job https://hydra.nixos.org/build/295092253 at 2025-04-22
- character-cases # failure in job https://hydra.nixos.org/build/233197636 at 2023-09-02
- chart-histogram # failure in job https://hydra.nixos.org/build/233250470 at 2023-09-02
- Chart-simple # failure in job https://hydra.nixos.org/build/233240919 at 2023-09-02
- charter # failure in job https://hydra.nixos.org/build/233237264 at 2023-09-02
- chaselev-deque # failure in job https://hydra.nixos.org/build/233237595 at 2023-09-02
- chatty-text # failure in job https://hydra.nixos.org/build/233199498 at 2023-09-02
- chatty-utils # failure in job https://hydra.nixos.org/build/252710715 at 2024-03-16
- chatwork # failure in job https://hydra.nixos.org/build/233240489 at 2023-09-02
- check-cfg-ambiguity # failure in job https://hydra.nixos.org/build/233251852 at 2023-09-02
- checked # failure in job https://hydra.nixos.org/build/233223182 at 2023-09-02
- Checked # failure in job https://hydra.nixos.org/build/233257598 at 2023-09-02
- checkmate # failure in job https://hydra.nixos.org/build/233248012 at 2023-09-02
- chell-quickcheck # won't support QuickCheck >= 2.15 https://github.com/typeclasses/chell/issues/5#issuecomment-3152262118
- chessica # failure in job https://hydra.nixos.org/build/307517327 at 2025-09-19
- chez-grater # failure in job https://hydra.nixos.org/build/233213537 at 2023-09-02
- chiasma # failure in job https://hydra.nixos.org/build/295122809 at 2025-04-22
- chiphunk # failure in job https://hydra.nixos.org/build/233232520 at 2023-09-02
- Chitra # failure in job https://hydra.nixos.org/build/233256826 at 2023-09-02
- choose # failure in job https://hydra.nixos.org/build/233194245 at 2023-09-02
- chorale # failure in job https://hydra.nixos.org/build/233200153 at 2023-09-02
- chp # failure in job https://hydra.nixos.org/build/233232868 at 2023-09-02
- chr-parse # failure in job https://hydra.nixos.org/build/233243933 at 2023-09-02
- ChristmasTree # failure in job https://hydra.nixos.org/build/233259648 at 2023-09-02
- chronograph # failure in job https://hydra.nixos.org/build/233232822 at 2023-09-02
- chronos-bench # failure in job https://hydra.nixos.org/build/295092276 at 2025-04-22
- chunky # failure in job https://hydra.nixos.org/build/233216440 at 2023-09-02
- church # failure in job https://hydra.nixos.org/build/233223920 at 2023-09-02
- church-maybe # failure in job https://hydra.nixos.org/build/233258572 at 2023-09-02
- churros # failure in job https://hydra.nixos.org/build/233218976 at 2023-09-02
- cicero-api # failure in job https://hydra.nixos.org/build/233222299 at 2023-09-02
- cielo # failure in job https://hydra.nixos.org/build/233240001 at 2023-09-02
- cil # failure in job https://hydra.nixos.org/build/233255428 at 2023-09-02
- cinvoke # failure in job https://hydra.nixos.org/build/233244748 at 2023-09-02
- cio # failure in job https://hydra.nixos.org/build/233218269 at 2023-09-02
- cipher-aes128 # failure in job https://hydra.nixos.org/build/233242645 at 2023-09-02
- cipher-blowfish # failure in job https://hydra.nixos.org/build/233193834 at 2023-09-02
- cipher-des # failure in job https://hydra.nixos.org/build/233232112 at 2023-09-02
- circle # failure in job https://hydra.nixos.org/build/252722965 at 2024-03-16
- circlehs # failure in job https://hydra.nixos.org/build/233246591 at 2023-09-02
- circuit-notation # failure in job https://hydra.nixos.org/build/309812708 at 2025-10-15
- citeproc-hs # failure in job https://hydra.nixos.org/build/233254388 at 2023-09-02
- cj-token # failure in job https://hydra.nixos.org/build/233253928 at 2023-09-02
- cjk # failure in job https://hydra.nixos.org/build/233258734 at 2023-09-02
- cl3-hmatrix-interface # failure in job https://hydra.nixos.org/build/233260081 at 2023-09-02
- cl3-linear-interface # failure in job https://hydra.nixos.org/build/233255205 at 2023-09-02
- clang-compilation-database # failure in job https://hydra.nixos.org/build/233225320 at 2023-09-02
- clang-pure # failure in job https://hydra.nixos.org/build/233193420 at 2023-09-02
- clanki # failure in job https://hydra.nixos.org/build/233196970 at 2023-09-02
- clarifai # failure in job https://hydra.nixos.org/build/233229480 at 2023-09-02
- CLASE # failure in job https://hydra.nixos.org/build/233234459 at 2023-09-02
- clash-finite # failure in job https://hydra.nixos.org/build/295092297 at 2025-04-22
- clash-multisignal # failure in job https://hydra.nixos.org/build/273463331 at 2024-10-01
- clash-prelude-quickcheck # failure in job https://hydra.nixos.org/build/273453747 at 2024-10-01
- Clash-Royale-Hack-Cheats # failure in job https://hydra.nixos.org/build/233216034 at 2023-09-02
- clash-systemverilog # failure in job https://hydra.nixos.org/build/273453889 at 2024-10-01
- clash-verilog # failure in job https://hydra.nixos.org/build/273466517 at 2024-10-01
- clash-vhdl # failure in job https://hydra.nixos.org/build/273460098 at 2024-10-01
- clashilator # failure in job https://hydra.nixos.org/build/273442437 at 2024-10-01
- ClasshSS # failure in job https://hydra.nixos.org/build/255688076 at 2024-04-16
- ClassLaws # failure in job https://hydra.nixos.org/build/233243019 at 2023-09-02
- classy-effects-base # failure in updateAutotoolsGnuConfigScriptsPhase in job https://hydra.nixos.org/build/237233636 at 2023-10-21
- classy-influxdb-simple # failure in job https://hydra.nixos.org/build/233253418 at 2023-09-02
- classy-parallel # failure in job https://hydra.nixos.org/build/233213514 at 2023-09-02
- classyplate # failure in job https://hydra.nixos.org/build/233212613 at 2023-09-02
- ClassyPrelude # failure in job https://hydra.nixos.org/build/233216521 at 2023-09-02
- cld2 # failure in job https://hydra.nixos.org/build/233205709 at 2023-09-02
- Clean # failure in job https://hydra.nixos.org/build/233255199 at 2023-09-02
- clean-unions # failure in job https://hydra.nixos.org/build/233237582 at 2023-09-02
- cleff # failure in job https://hydra.nixos.org/build/233243158 at 2023-09-02
- clerk # failure in job https://hydra.nixos.org/build/252713517 at 2024-03-16
- clevercss # failure in job https://hydra.nixos.org/build/233206298 at 2023-09-02
- clexer # failure in job https://hydra.nixos.org/build/233229804 at 2023-09-02
- CLI # failure in job https://hydra.nixos.org/build/233191087 at 2023-09-02
- cli-builder # failure in job https://hydra.nixos.org/build/233209961 at 2023-09-02
- clickhouse-haskell # failure in job https://hydra.nixos.org/build/311051388 at 2025-11-02
- clif # failure in job https://hydra.nixos.org/build/233197110 at 2023-09-02
- clifm # failure in job https://hydra.nixos.org/build/233227426 at 2023-09-02
- clingo # failure in job https://hydra.nixos.org/build/233238084 at 2023-09-02
- clippard # failure in job https://hydra.nixos.org/build/233252884 at 2023-09-02
- clipper # failure in job https://hydra.nixos.org/build/233235418 at 2023-09-02
- clisparkline # failure in job https://hydra.nixos.org/build/233218465 at 2023-09-02
- clit # failure in job https://hydra.nixos.org/build/233227334 at 2023-09-02
- cloben # failure in job https://hydra.nixos.org/build/233194390 at 2023-09-02
- clock-extras # failure in job https://hydra.nixos.org/build/233190748 at 2023-09-02
- clocked # failure in job https://hydra.nixos.org/build/233241524 at 2023-09-02
- clod # failure in job https://hydra.nixos.org/build/309812703 at 2025-10-15
- clogparse # failure in job https://hydra.nixos.org/build/233220294 at 2023-09-02
- clone-all # failure in job https://hydra.nixos.org/build/233234063 at 2023-09-02
- closed-classes # failure in job https://hydra.nixos.org/build/233250965 at 2023-09-02
- closed-intervals # failure in job https://hydra.nixos.org/build/233209665 at 2023-09-02
- closure # failure in job https://hydra.nixos.org/build/233215133 at 2023-09-02
- cloudchor # failure in job https://hydra.nixos.org/build/317092959 at 2025-12-27
- cloudfront-signer # failure in job https://hydra.nixos.org/build/233238255 at 2023-09-02
- clplug # failure in job https://hydra.nixos.org/build/233236794 at 2023-09-02
- clr-host # failure in job https://hydra.nixos.org/build/233207709 at 2023-09-02
- clr-typed # failure in job https://hydra.nixos.org/build/233212102 at 2023-09-02
- cltw # failure in job https://hydra.nixos.org/build/252735903 at 2024-03-16
- cluss # failure in job https://hydra.nixos.org/build/233245341 at 2023-09-02
- cmark-gfm-lens # failure in job https://hydra.nixos.org/build/311051270 at 2025-11-02
- cmark-highlight # failure in job https://hydra.nixos.org/build/233218534 at 2023-09-02
- cmark-lens # failure in job https://hydra.nixos.org/build/311051296 at 2025-11-02
- cmark-patterns # failure in job https://hydra.nixos.org/build/233192983 at 2023-09-02
- cmark-sections # failure in job https://hydra.nixos.org/build/233222829 at 2023-09-02
- cmath # failure in job https://hydra.nixos.org/build/233236588 at 2023-09-02
- cmd-item # failure in job https://hydra.nixos.org/build/233223946 at 2023-09-02
- cmdlib # failure in job https://hydra.nixos.org/build/233222751 at 2023-09-02
- cmdtheline # failure in job https://hydra.nixos.org/build/233199201 at 2023-09-02
- cmf # failure in job https://hydra.nixos.org/build/233256827 at 2023-09-02
- cmonad # failure in job https://hydra.nixos.org/build/233254242 at 2023-09-02
- cmph # failure in job https://hydra.nixos.org/build/233225766 at 2023-09-02
- CMQ # failure in job https://hydra.nixos.org/build/233233168 at 2023-09-02
- cmt # failure in job https://hydra.nixos.org/build/233233474 at 2023-09-02
- co-log-effectful # failure in job https://hydra.nixos.org/build/307517405 at 2025-09-19
- co-log-json # failure in job https://hydra.nixos.org/build/307517383 at 2025-09-19
- co-log-polysemy-formatting # failure building executable 'example' in job https://hydra.nixos.org/build/237249360 at 2023-10-21
- co-log-sys # failure in job https://hydra.nixos.org/build/233206587 at 2023-09-02
- cobot-tools # failure in job https://hydra.nixos.org/build/233259173 at 2023-09-02
- code-builder # failure in job https://hydra.nixos.org/build/233239215 at 2023-09-02
- codec-beam # failure in job https://hydra.nixos.org/build/233198704 at 2023-09-02
- Codec-Image-DevIL # failure in job https://hydra.nixos.org/build/307682428 at 2025-09-19
- codecov-haskell # failure in job https://hydra.nixos.org/build/233256758 at 2023-09-02
- codeforces-cli # failure in job https://hydra.nixos.org/build/233210719 at 2023-09-02
- codepad # failure in job https://hydra.nixos.org/build/233197730 at 2023-09-02
- codet-plugin # failure in job https://hydra.nixos.org/build/307517392 at 2025-09-19
- codeworld-api # failure in job https://hydra.nixos.org/build/252720413 at 2024-03-16
- codex # failure in job https://hydra.nixos.org/build/233212311 at 2023-09-02
- codo-notation # failure in job https://hydra.nixos.org/build/233202566 at 2023-09-02
- coercible-utils # failure in job https://hydra.nixos.org/build/233230462 at 2023-09-02
- coercion-extras # failure in job https://hydra.nixos.org/build/295092384 at 2025-04-22
- coin # failure in job https://hydra.nixos.org/build/233198975 at 2023-09-02
- coinbase-pro # failure in job https://hydra.nixos.org/build/233245350 at 2023-09-02
- colchis # failure in job https://hydra.nixos.org/build/233207690 at 2023-09-02
- collada-output # failure in job https://hydra.nixos.org/build/233192394 at 2023-09-02
- collapse-util # failure in job https://hydra.nixos.org/build/233238818 at 2023-09-02
- collate # failure in job https://hydra.nixos.org/build/233243978 at 2023-09-02
- collections # failure in job https://hydra.nixos.org/build/233251207 at 2023-09-02
- collections-api # failure in job https://hydra.nixos.org/build/233220769 at 2023-09-02
- colonnade # failure in job https://hydra.nixos.org/build/233248956 at 2023-09-02
- colorless # failure in job https://hydra.nixos.org/build/233220728 at 2023-09-02
- colour-text # failure in job https://hydra.nixos.org/build/252712609 at 2024-03-16
- coltrane # failure in job https://hydra.nixos.org/build/233216437 at 2023-09-02
- comark-syntax # failure in job https://hydra.nixos.org/build/233243043 at 2023-09-02
- combinat # failure in job https://hydra.nixos.org/build/233259056 at 2023-09-02
- combinat-compat # failure in job https://hydra.nixos.org/build/233201337 at 2023-09-02
- combinator-interactive # failure in job https://hydra.nixos.org/build/233233138 at 2023-09-02
- combinatorial-problems # failure in job https://hydra.nixos.org/build/233244505 at 2023-09-02
- combobuffer # failure in job https://hydra.nixos.org/build/233240114 at 2023-09-02
- comma-and # failure in job https://hydra.nixos.org/build/307517425 at 2025-09-19
- Command # failure in job https://hydra.nixos.org/build/233249718 at 2023-09-02
- commander # failure in job https://hydra.nixos.org/build/233239812 at 2023-09-02
- Commando # failure in job https://hydra.nixos.org/build/233248911 at 2023-09-02
- commodities # failure in job https://hydra.nixos.org/build/233239851 at 2023-09-02
- comonad-extras # failure in job https://hydra.nixos.org/build/252715520 at 2024-03-16
- compact-list # failure in job https://hydra.nixos.org/build/233241961 at 2023-09-02
- compact-map # failure in job https://hydra.nixos.org/build/233201665 at 2023-09-02
- compact-mutable-vector # failure in job https://hydra.nixos.org/build/245539335 at 2024-01-02
- compact-sequences # failure in job https://hydra.nixos.org/build/233208553 at 2023-09-02
- compact-socket # failure in job https://hydra.nixos.org/build/245539349 at 2024-01-02
- compact-string # failure in job https://hydra.nixos.org/build/233204162 at 2023-09-02
- compact-string-fix # failure in job https://hydra.nixos.org/build/233238513 at 2023-09-02
- compact-word-vectors # failure in job https://hydra.nixos.org/build/307517438 at 2025-09-19
- Compactable # failure in job https://hydra.nixos.org/build/233227285 at 2023-09-02
- compactable # failure in job https://hydra.nixos.org/build/233228106 at 2023-09-02
- compaREST # failure in job https://hydra.nixos.org/build/295122812 at 2025-04-22
- comparse # failure in job https://hydra.nixos.org/build/233220012 at 2023-09-02
- compdata # failure in job https://hydra.nixos.org/build/307517440 at 2025-09-19
- compdata-dags # failure in job https://hydra.nixos.org/build/233216580 at 2023-09-02
- compdata-param # failure in job https://hydra.nixos.org/build/233227003 at 2023-09-02
- compendium-client # failure in job https://hydra.nixos.org/build/233231884 at 2023-09-02
- competition # failure in job https://hydra.nixos.org/build/233243172 at 2023-09-02
- compilation # failure in job https://hydra.nixos.org/build/233252348 at 2023-09-02
- complex-generic # failure in job https://hydra.nixos.org/build/233243926 at 2023-09-02
- composable-associations-aeson # failure in job https://hydra.nixos.org/build/233247162 at 2023-09-02
- compose-trans # failure in job https://hydra.nixos.org/build/233236785 at 2023-09-02
- composite-aeson-path # failure in job https://hydra.nixos.org/build/233203114 at 2023-09-02
- composite-aeson-refined # failure in job https://hydra.nixos.org/build/233241450 at 2023-09-02
- composite-base # failure in job https://hydra.nixos.org/build/245710306 at 2024-01-07
- composite-cassava # failure in job https://hydra.nixos.org/build/233241110 at 2023-09-02
- composite-dhall # failure in job https://hydra.nixos.org/build/244399630 at 2024-01-01
- composite-ekg # failure in job https://hydra.nixos.org/build/233235858 at 2023-09-02
- composite-opaleye # failure in job https://hydra.nixos.org/build/233256318 at 2023-09-02
- composite-swagger # failure in job https://hydra.nixos.org/build/233258006 at 2023-09-02
- composition-tree # failure in job https://hydra.nixos.org/build/233219116 at 2023-09-02
- compressed # failure in job https://hydra.nixos.org/build/233214349 at 2023-09-02
- compression # failure in job https://hydra.nixos.org/build/233250833 at 2023-09-02
- compstrat # failure in job https://hydra.nixos.org/build/233255500 at 2023-09-02
- comptrans # failure in job https://hydra.nixos.org/build/233209853 at 2023-09-02
- computational-geometry # failure in job https://hydra.nixos.org/build/233220627 at 2023-09-02
- computations # failure in job https://hydra.nixos.org/build/233249992 at 2023-09-02
- ConClusion # failure in job https://hydra.nixos.org/build/307515968 at 2025-09-19
- concrete-relaxng-parser # failure in job https://hydra.nixos.org/build/233192905 at 2023-09-02
- concrete-typerep # failure in job https://hydra.nixos.org/build/233234198 at 2023-09-02
- concurrent-buffer # failure in job https://hydra.nixos.org/build/233249002 at 2023-09-02
- Concurrent-Cache # failure in job https://hydra.nixos.org/build/233238494 at 2023-09-02
- concurrent-machines # failure in job https://hydra.nixos.org/build/307517470 at 2025-09-19
- concurrent-st # failure in job https://hydra.nixos.org/build/233219451 at 2023-09-02
- concurrent-state # failure in job https://hydra.nixos.org/build/233248441 at 2023-09-02
- concurrent-utilities # failure in job https://hydra.nixos.org/build/307517482 at 2025-09-19
- Concurrential # failure in job https://hydra.nixos.org/build/233221502 at 2023-09-02
- conditional-restriction-parser # failure in job https://hydra.nixos.org/build/233211470 at 2023-09-02
- condorcet # failure in job https://hydra.nixos.org/build/233208640 at 2023-09-02
- conductive-base # failure in job https://hydra.nixos.org/build/233234746 at 2023-09-02
- conduit-audio-lame # failure in job https://hydra.nixos.org/build/233253987 at 2023-09-02
- conduit-audio-samplerate # failure in job https://hydra.nixos.org/build/233208457 at 2023-09-02
- conduit-audio-sndfile # failure in job https://hydra.nixos.org/build/252728043 at 2024-03-16
- conduit-connection # failure in job https://hydra.nixos.org/build/233232646 at 2023-09-02
- conduit-find # failure in job https://hydra.nixos.org/build/233259909 at 2023-09-02
- conduit-iconv # failure in job https://hydra.nixos.org/build/233246555 at 2023-09-02
- conduit-network-stream # failure in job https://hydra.nixos.org/build/233243436 at 2023-09-02
- conduit-resumablesink # failure in job https://hydra.nixos.org/build/233248566 at 2023-09-02
- conduit-tokenize-attoparsec # failure in job https://hydra.nixos.org/build/233237152 at 2023-09-02