-
Notifications
You must be signed in to change notification settings - Fork 41
/
stack-setup-2.yaml
4536 lines (4494 loc) · 301 KB
/
stack-setup-2.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
stack:
linux64:
0.1.6.0:
url: "https://github.com/commercialhaskell/stack/releases/download/v0.1.6.0/stack-0.1.6.0-linux-x86_64.tar.gz"
content-length: 7148665
sha1: aa29874a1444911aa99c3493a1858fdf57065f65
0.1.8.0:
url: "https://github.com/commercialhaskell/stack/releases/download/v0.1.8.0/stack-0.1.8.0-linux-x86_64.tar.gz"
content-length: 7301569
sha1: 387e41cf5baec728e27661895ba13e2f08c206b2
0.1.10.0:
url: "https://github.com/commercialhaskell/stack/releases/download/v0.1.10.0/stack-0.1.10.0-linux-x86_64.tar.gz"
content-length: 7555466
sha1: 3eb43b6ac39bd02084388dd7db8e6f9123bc6782
0.1.10.1:
url: "https://github.com/commercialhaskell/stack/releases/download/v0.1.10.1/stack-0.1.10.1-linux-x86_64.tar.gz"
content-length: 7555502
sha1: 54a911f16348198e7c90f75d56fc11df5bceb3c1
1.0.0:
url: "https://github.com/commercialhaskell/stack/releases/download/v1.0.0/stack-1.0.0-linux-x86_64.tar.gz"
content-length: 7603373
sha1: fdaa5e48f5032c95ee2a425fe50579d81c8d3a2d
1.0.2:
url: "https://github.com/commercialhaskell/stack/releases/download/v1.0.2/stack-1.0.2-linux-x86_64.tar.gz"
content-length: 8326811
sha1: 04d3267dcd53988e8a7f8d37c4247d1e2977396f
1.0.4:
url: "https://github.com/commercialhaskell/stack/releases/download/v1.0.4/stack-1.0.4-linux-x86_64.tar.gz"
content-length: 8568156
sha1: ffd305ecd626ebbf9c344907b8ff9afedab77b8f
1.0.4.1:
url: "https://github.com/commercialhaskell/stack/releases/download/v1.0.4/stack-1.0.4.1-linux-x86_64.tar.gz"
content-length: 8565672
sha1: 9fa9da671bd1c6789a69838c2cb65adbff1ccf28
1.0.4.2:
url: "https://github.com/commercialhaskell/stack/releases/download/v1.0.4/stack-1.0.4.2-linux-x86_64.tar.gz"
content-length: 8566652
sha1: 53e137b10de8bd6e982dc13ea6a6964d6bbaeb10
1.0.4.3:
url: "https://github.com/commercialhaskell/stack/releases/download/v1.0.4.3/stack-1.0.4.3-linux-x86_64.tar.gz"
content-length: 8566293
sha1: e3624fb942436cde6486ffa38f29527e1e873ba4
1.1.0:
url: "https://github.com/commercialhaskell/stack/releases/download/v1.1.0/stack-1.1.0-linux-x86_64.tar.gz"
content-length: 8934420
sha1: c6348d2f4e0b4b2c1bf83cfba4fec63eddda68f9
1.1.2:
url: "https://github.com/commercialhaskell/stack/releases/download/v1.1.2/stack-1.1.2-linux-x86_64.tar.gz"
content-length: 9444702
sha1: 7147c2c912e7c12ebe81c6f3d3cf1e128f7b40fb
1.2.0:
url: "https://github.com/commercialhaskell/stack/releases/download/v1.2.0/stack-1.2.0-linux-x86_64-static.tar.gz"
content-length: 8771659
sha1: 4adce79f33e1dd996fa84396fbac4ba4913589d7
#
# AS OF STACK 1.3.0, THIS INFORMATION IS NO LONGER USED, AND NEWER VERSIONS OF STACK WILL NOT BE ADDED.
#
sevenzexe-info:
url: "https://github.com/commercialhaskell/stackage-content/releases/download/7z-22.01/7z.exe"
content-length: 545280
sha256: 254cf6411d38903b2440819f7e0a847f0cfee7f8096cfad9e90fea62f42b0c23
sevenzdll-info:
url: "https://github.com/commercialhaskell/stackage-content/releases/download/7z-22.01/7z.dll"
content-length: 1814016
sha256: 73578f14d50f747efa82527a503f1ad542f9db170e2901eddb54d6bce93fc00e
portable-git:
version: 2.4.5.1
url: "https://github.com/git-for-windows/git/releases/download/v2.4.5.windows.1/PortableGit-2.4.5.1-4th-release-candidate-32-bit.7z.exe"
content-length: 44221160
sha1: 3df088915f67297cb5ad3ab73ba9361fcb5e44ea
# For upgrade instructions, see: https://github.com/commercialhaskell/stack/blob/stable/doc/maintainers/msys.md
msys2:
windows32:
version: "20200517"
url: "https://github.com/fpco/stackage-content/releases/download/20200517/msys2-20200517-i686.tar.xz"
content-length: 79049224
sha256: 9152ddf50c6bacfae33c1436338235f8db4b10d73aaea63adefd96731fb0bceb
windows64:
version: "20230526"
url: "https://github.com/commercialhaskell/stackage-content/releases/download/msys2-20230526/msys2-20230526-x86_64.tar.xz"
content-length: 80821956
sha256: 788fdf7c7c84a01c0c6234d2a453dacbca06d85a7e9736f6779abd11ffb0b003
ghc:
linux32:
7.8.4:
url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-7.8.4-release/ghc-7.8.4-i386-unknown-linux-deb7-patch1.tar.xz"
content-length: 79802784
sha1: 476c1ab647bb748e4e4e9ecd7270df08c1e02b8b
7.10.1:
url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-7.10.1-release/ghc-7.10.1-i386-unknown-linux-deb7-patch1.tar.xz"
content-length: 90127328
sha1: b26d75624890f5a17c67605d150b750022e7864e
7.10.2:
url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-7.10.2-release/ghc-7.10.2-i386-unknown-linux-deb7-patch1.tar.xz"
content-length: 90530912
sha1: b8dc39e04e740874b4300da1e102e4d772e2b123
7.10.3:
url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-7.10.3-release/ghc-7.10.3b-i386-deb7-linux-patch1.tar.xz"
content-length: 88226676
sha1: 71277cd3bffd5b3da929971b89400d177de3b8d8
8.0.1:
url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.0.1-release/ghc-8.0.1-i386-deb7-linux-patch1.tar.xz"
content-length: 110798512
sha1: 2ba321f45918f477a1c69d153ca793b4a11540e0
8.0.2:
url: "https://downloads.haskell.org/~ghc/8.0.2/ghc-8.0.2-i386-deb7-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.0.2-release/ghc-8.0.2-i386-deb7-linux.tar.xz"
content-length: 112800144
sha1: d99aecac26d94fd0d3b996c1a48c1aec9745cd59
8.2.1:
url: "https://downloads.haskell.org/~ghc/8.2.1/ghc-8.2.1-i386-deb7-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.2.1-release/ghc-8.2.1-i386-deb7-linux.tar.xz"
content-length: 124942812
sha1: 17eef9b2151a9bfc5aee93b11cbe76f1a5a2eb02
8.2.2:
url: "https://downloads.haskell.org/~ghc/8.2.2/ghc-8.2.2-i386-deb7-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.2.2-release/ghc-8.2.2-i386-deb7-linux.tar.xz"
content-length: 125076928
sha1: 862a3ddf030bb3ded2de5e1842a7f432ac0f3158
sha256: cd18766b1a9b74fc6c90003a719ecab158f281f9a755d8b1bd3fd764ba6947b5
8.4.1:
url: "https://downloads.haskell.org/~ghc/8.4.1/ghc-8.4.1-i386-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.4.1-release/ghc-8.4.1-i386-deb8-linux.tar.xz"
content-length: 147022744
sha1: 07f80c51632b17c60d4257a625c88c46e7de35df
sha256: c56c589c76c7ddcb77cdbef885a811761e669d3e76868b723d5be56dedcd4f69
8.4.2:
url: "https://downloads.haskell.org/~ghc/8.4.2/ghc-8.4.2-i386-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.4.2-release/ghc-8.4.2-i386-deb8-linux.tar.xz"
content-length: 147544236
sha1: c9d9acd02d6b0aeb53cd13ac2c5e532904884a3a
sha256: 2d849c30b4c1eac25dc74333501920921e22fa483153f404993808bbda93df05
8.4.3:
url: "https://downloads.haskell.org/~ghc/8.4.3/ghc-8.4.3-i386-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.4.3-release/ghc-8.4.3-i386-deb8-linux.tar.xz"
content-length: 147610164
sha1: bb8b3153d38111d6a0d2ca9a082045b71f6349a0
sha256: f5763983a26dedd88b65a0b17267359a3981b83a642569b26334423f684f8b8c
8.4.4:
url: "https://downloads.haskell.org/~ghc/8.4.4/ghc-8.4.4-i386-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.4.4-release/ghc-8.4.4-i386-deb8-linux.tar.xz"
content-length: 147557416
sha1: 84f83d60ea415df6341df4047e95eadd155987dc
sha256: 678bafaabea6af70ba71ccf0210bb437f9f5591ec28ac1cbbbd5f7aa6894e450
8.6.1:
url: "https://downloads.haskell.org/~ghc/8.6.1/ghc-8.6.1-i386-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.6.1-release/ghc-8.6.1-i386-deb8-linux.tar.xz"
content-length: 177317168
sha1: 8cd4c56adb4bb269d2da87eea157857d3b76c037
sha256: 83573af96e3dec8f67c1a844512f92cbf7d51ae7ceca53d948fc2a3300abd05c
8.6.2:
url: "https://downloads.haskell.org/~ghc/8.6.2/ghc-8.6.2-i386-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.6.2-release/ghc-8.6.2-i386-deb8-linux.tar.xz"
content-length: 177362500
sha1: fd4e000a3a077ce9434ae852dd3798ec9853ccc0
sha256: a288026d9ef22f7ac387edab6b29ef7dcb3b28945c8ea532a15c1fa35d4733ed
8.6.3:
url: "https://downloads.haskell.org/~ghc/8.6.3/ghc-8.6.3-i386-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.6.3-release/ghc-8.6.3-i386-deb8-linux.tar.xz"
content-length: 177351188
sha1: 6965ef1875423532850f61a6a8520be3676ee715
sha256: b57070ba8c70b1333a3e47ce124baf791be39c20a592954772532fd6dd51882f
8.6.4:
url: "https://downloads.haskell.org/~ghc/8.6.4/ghc-8.6.4-i386-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.6.4-release/ghc-8.6.4-i386-deb9-linux.tar.xz"
content-length: 186494668
sha1: 59ed4f57e6079470db5d7b5c4a6886d8639bc544
sha256: 5e2ce88f4d13d23ac37e278e0c7b51c801008931359b9fa8a631d804d2da552c
8.6.5:
url: "https://downloads.haskell.org/~ghc/8.6.5/ghc-8.6.5-i386-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.6.5-release/ghc-8.6.5-i386-deb9-linux.tar.xz"
content-length: 187048424
sha1: 3aab514beadef20d1c31eaa165ae987eedc1c686
sha256: 1cddb907393a669342b1a922dd16d505d9d93d50bd9433a54a8162f8701250dc
8.8.1:
url: "https://downloads.haskell.org/~ghc/8.8.1/ghc-8.8.1-i386-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.8.1-release/ghc-8.8.1-i386-deb9-linux.tar.xz"
content-length: 204669320
sha1: 5c9e1cad872d09f70d493744241d85e0e4b2d772
sha256: 3d3bb75aff2dd79ec87ace10483368681fbc328ff00ebf15edad33420f00f7f5
8.8.2:
url: "https://downloads.haskell.org/~ghc/8.8.2/ghc-8.8.2-i386-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.8.2-release/ghc-8.8.2-i386-deb9-linux.tar.xz"
content-length: 204955748
sha1: 9c6c8dc35eddef98865d64f2de6e7643b07a5570
sha256: ad1c628082c32635a436905a7ff83eaa4246347d869be5ef6b33c3bf85e8f00c
8.8.3:
url: "https://downloads.haskell.org/~ghc/8.8.3/ghc-8.8.3-i386-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.8.3-release/ghc-8.8.3-i386-deb9-linux.tar.xz"
content-length: 204980812
sha1: ca5dccb4cae10fadd72c5918f45a45fad33f85fb
sha256: 441e2c7a4fc83ebf179712bd939b555cda7c6633545b7c8ac38049f9d85003ae
8.8.4:
url: "https://downloads.haskell.org/~ghc/8.8.4/ghc-8.8.4-i386-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.8.4-release/ghc-8.8.4-i386-deb9-linux.tar.xz"
content-length: 210077656
sha1: eefb902bb3373925f596f1f1838f112caa95cd39
sha256: 43dd954910c9027694312cef0aabc7774d102d0422b7172802cfb72f7d5da3a0
8.10.1:
url: "https://downloads.haskell.org/~ghc/8.10.1/ghc-8.10.1-i386-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.10.1-release/ghc-8.10.1-i386-deb9-linux.tar.xz"
content-length: 215852640
sha1: 30b28ec4d3b6af5eb3f25668a2567d9ba5c06de0
sha256: 8b53eef2c827b5f634d72920a93c0c9dd66ea288691a2bfe28def45d3c686ee2
8.10.2:
url: "https://downloads.haskell.org/~ghc/8.10.2/ghc-8.10.2-i386-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.10.2-release/ghc-8.10.2-i386-deb9-linux.tar.xz"
content-length: 214239684
sha1: ceb3bc9c2befdf6e44ab18b298d09fc122a77b31
sha256: 9dae2a86ad43d08f72c783542c944d1556b075aa20a8063efae5034ea88e7c2f
8.10.3:
url: "https://downloads.haskell.org/~ghc/8.10.3/ghc-8.10.3-i386-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.10.3-release/ghc-8.10.3-i386-deb9-linux.tar.xz"
content-length: 215707372
sha1: a6685fe6ed0362862d810229a83ba813c57e7c2d
sha256: f0addd2a16b705f58ff9e8702c3ddf3e2d6bd0d3555707b5b5095e51bafee7b1
8.10.4:
url: "http://downloads.haskell.org/~ghc/8.10.4/ghc-8.10.4-i386-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.10.4-release/ghc-8.10.4-i386-deb9-linux.tar.xz"
content-length: 215689536
sha1: cbf830929a696d54ccc09862c7f421d4629aebc5
sha256: 0022c5b9ac22825bb7b4745af3d92cef0ba1ecd01fab3ef387ddbd47146569ad
8.10.5:
url: "http://downloads.haskell.org/~ghc/8.10.5/ghc-8.10.5-i386-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.10.5-release/ghc-8.10.5-i386-deb9-linux.tar.xz"
content-length: 216613660
sha1: 5f33413d7d8e5dc4ce3bf145789db5c89e6ff911
sha256: 0ccb5b2c1222374874795c35410754dd650f649b774872abbea2a4ef21ac9c9d
8.10.6:
url: "http://downloads.haskell.org/~ghc/8.10.6/ghc-8.10.6-i386-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.10.6-release/ghc-8.10.6-i386-deb9-linux.tar.xz"
content-length: 215823844
sha1: cdf88c84a8d3af31274cd0f2741b5545438569c0
sha256: 31f934423d7971b462eaa53cf87b15265d11420578c5a8a04304348cb90f1c13
8.10.7:
url: "http://downloads.haskell.org/~ghc/8.10.7/ghc-8.10.7-i386-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.10.7-release/ghc-8.10.7-i386-deb9-linux.tar.xz"
content-length: 215860760
sha1: 6cbca87b4b3becbd982bc264224f55febbbab00d
sha256: fbfc1ef194f4e7a4c0da8c11cc69b17458a4b928b609b3622c97acc4acd5c5ab
9.0.1:
url: "http://downloads.haskell.org/~ghc/9.0.1/ghc-9.0.1-i386-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-9.0.1-release/ghc-9.0.1-i386-deb9-linux.tar.xz"
content-length: 218717576
sha1: 16a3a7b19f30331519651df5bba9033fc438da7f
sha256: 880e37cea8328401bcfecfe4bb56eb85195f30135b140140b3f24094264f8ba5
9.0.2:
url: "http://downloads.haskell.org/~ghc/9.0.2/ghc-9.0.2-i386-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-9.0.2-release/ghc-9.0.2-i386-deb9-linux.tar.xz"
content-length: 122499044
sha1: 84d52622eaf8e698e6cc32e3c86ded0456c9759a
sha256: fdeb9f8928fbe994064778a8e1e85bb1a58a6cd3dd7b724fcc2a1dcfda6cad47
9.2.1:
url: "http://downloads.haskell.org/~ghc/9.2.1/ghc-9.2.1-i386-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-9.2.1-release/ghc-9.2.1-i386-deb9-linux.tar.xz"
content-length: 127415076
sha1: fe6ffc0f65aa71957c938b4fd97b5e7ce1894578
sha256: 6daa9e983fbe5af5a3c449c92e5b331d2ecb8e76ea07fc4e237ba5ff27af2c45
9.2.2:
url: "http://downloads.haskell.org/~ghc/9.2.2/ghc-9.2.2-i386-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-9.2.2-release/ghc-9.2.2-i386-deb9-linux.tar.xz"
content-length: 128392588
sha1: 2daa44578822088fc248e70481290b886353fcfe
sha256: 24234486ed4508161c6f88f4750a36d38b135b0c6e5fe78efe2d85c612ecaf9e
9.2.3:
url: "https://downloads.haskell.org/~ghc/9.2.3/ghc-9.2.3-i386-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-9.2.3-release/ghc-9.2.3-i386-deb9-linux.tar.xz"
content-length: 245126840
sha1: 216198af5a999ace0e6f1df35322ac03ad1e5f2e
sha256: 5730ee787cda39b9642d7963107a323248ff26d3531cb2c23e03631d3cd5f4ad
9.2.4:
url: "https://downloads.haskell.org/~ghc/9.2.4/ghc-9.2.4-i386-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-9.2.4-release/ghc-9.2.4-i386-deb9-linux.tar.xz"
content-length: 244581704
sha1: 741aa5e12c8118413cafc10d46f7b1d65548cae4
sha256: 5dc1eb9c65f01b1e5c5693af72af07a4e9e75c6920e620fd598daeefa804487a
9.2.5:
url: "https://downloads.haskell.org/~ghc/9.2.5/ghc-9.2.5-i386-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-9.2.5-release/ghc-9.2.5-i386-deb9-linux.tar.xz"
content-length: 243832248
sha1: bd7979170e114d505caef1fc0b9ddc1b6c6a70fd
sha256: cf2088010e4477cb84b26725107eeb23e878368074abcf04f089d498ca2d9ddf
9.2.6:
url: "https://downloads.haskell.org/~ghc/9.2.6/ghc-9.2.6-i386-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-9.2.6-release/ghc-9.2.6-i386-deb9-linux.tar.xz"
content-length: 244658076
sha1: 4a1abb40ca6e74f144f0817ae5251f15eef8ff4d
sha256: 02040f53149322279472a0a3ee0bf398e4d9377f6b9484dbf4a83fef7e6d51a8
9.2.7:
url: "https://downloads.haskell.org/~ghc/9.2.7/ghc-9.2.7-i386-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-9.2.7-release/ghc-9.2.7-i386-deb9-linux.tar.xz"
content-length: 244420056
sha1: 82206ea77de80039f0b8c06bc932c01dd2e440eb
sha256: 02d63c411dba82ae46ae9d7e775057d0de36a5da27791809bf9d9750a824b0bd
9.2.8:
url: "https://downloads.haskell.org/~ghc/9.2.8/ghc-9.2.8-i386-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-9.2.8-release/ghc-9.2.8-i386-deb9-linux.tar.xz"
content-length: 244713804
sha1: 5d8964125bd247f06e2c3137f902b8ccd87a7296
sha256: 8e1261e5d3f9b2074af270f7ffb3d4714d878d4121a733a3d0a12ae715f3d9ee
9.4.1:
url: "https://downloads.haskell.org/~ghc/9.4.1/ghc-9.4.1-i386-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-9.4.1-release/ghc-9.4.1-i386-deb9-linux.tar.xz"
content-length: 185849888
sha1: c752d22792491a6ecccc13f985823e9566e0a5ed
sha256: 2b03ab4df4e8a6b093b07e3c5687c1b1c67cab572403c23b0565ce497867aad7
9.4.2:
url: "https://downloads.haskell.org/~ghc/9.4.2/ghc-9.4.2-i386-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-9.4.2-release/ghc-9.4.2-i386-deb9-linux.tar.xz"
content-length: 185741840
sha1: fa7067005bcc35e5ad03a446a024152776bc9d90
sha256: 7d94ecbe274470978a984b4079ed8cd18b44720c867d2f9f976645bd25cc0b45
9.4.3:
url: "https://downloads.haskell.org/~ghc/9.4.3/ghc-9.4.3-i386-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-9.4.3-release/ghc-9.4.3-i386-deb9-linux.tar.xz"
content-length: 182319384
sha1: a291912459bd1d0eadf4a83178b799c1debe6240
sha256: f7140655a50672f33c9b09880f5159f5eaa77e7e9330aa80996ab63712480e83
9.4.4:
url: "https://downloads.haskell.org/~ghc/9.4.4/ghc-9.4.4-i386-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-9.4.4-release/ghc-9.4.4-i386-deb9-linux.tar.xz"
content-length: 180277716
sha1: fd32684aa336c175d2b9a8248f094b486736b57f
sha256: 22b8b528afba4e1d6536a68f3c31037e4b106c699b2bbad5769a6a8473c0dab4
9.4.5:
url: "https://downloads.haskell.org/~ghc/9.4.5/ghc-9.4.5-i386-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-9.4.5-release/ghc-9.4.5-i386-deb9-linux.tar.xz"
content-length: 179616152
sha1: 3da92d57fad930c435a4cb010f2e900e37f6c7ed
sha256: 74a940f8afb4332f5eb0cde6aa6def8c8aae8c8632b05884a226434c86a644ec
9.4.6:
url: "https://downloads.haskell.org/~ghc/9.4.6/ghc-9.4.6-i386-deb9-linux.tar.xz"
content-length: 182896656
sha1: ee49fa804e55f5b089210aa7a16198982038bdab
sha256: b1089ef8fb69bf4411bdb1384a9c1d0902f10c176e60ba31d93c24b00cf0b81d
9.4.7:
url: "https://downloads.haskell.org/~ghc/9.4.7/ghc-9.4.7-i386-deb9-linux.tar.xz"
content-length: 178802084
sha1: c69a4e2db6e85f319771c1b5a499e229063c716e
sha256: be0ca9fc24bd9cbc3684eade6ba3b9ddbc8def8e1e216a3cbc2f24ce0a53fc48
9.4.8:
url: "https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-i386-deb9-linux.tar.xz"
content-length: 179975012
sha1: 07c790996823e7e0b41c4e0ecd0246e56a6a3e52
sha256: 1e3ed137346f6736ddd9a25045ccf686236216f198e7eb30671e2cf8546df658
9.6.1:
url: "https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-i386-deb9-linux.tar.xz"
content-length: 186960072
sha1: 9440f64abd6191ef5bea47fe6fb9bcab71e1fdc0
sha256: 5c0a14ec107a99aa084e18cb595cc2d445d6c2fdc5365bbf3b82248205638a85
9.6.2:
url: "https://downloads.haskell.org/~ghc/9.6.2/ghc-9.6.2-i386-deb9-linux.tar.xz"
content-length: 186363444
sha1: ecf43c63d5f39da6c980758395f9414de1aaf28b
sha256: 1fe47d995faec952812fe6a6b3b00bdb17a22e00c6c9f7b332ee87a4b453c1e2
9.6.3:
url: "https://downloads.haskell.org/~ghc/9.6.3/ghc-9.6.3-i386-deb9-linux.tar.xz"
content-length: 184238252
sha1: 9bb0fa236e4ab8c475c72860248f34ca0e0e2935
sha256: 58be26f8b8f6b5bd8baf5c32abb03e2c4621646b2142fab10e5c7de5af5c50f8
9.6.4:
url: "https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-i386-deb9-linux.tar.xz"
content-length: 188382640
sha1: 525ef648d4858648ff4eedbed87276df8afdb90c
sha256: 2069bbeeca4b4beef5343393a383fcd5b2ceae33be06006c512169d21f8eb9f8
9.6.5:
url: "https://downloads.haskell.org/ghc/9.6.5/ghc-9.6.5-i386-deb9-linux.tar.xz"
content-length: 185392300
sha1: 9071555473d3d5dd443f624e0477f00a3874d399
sha256: 10f62a735769cc76d035f67dc4bae4a595ec6c746aedec661130f1dce388dd49
9.6.6:
url: "https://downloads.haskell.org/ghc/9.6.6/ghc-9.6.6-i386-deb9-linux.tar.xz"
content-length: 186212528
sha1: 83fca3773af48db854827fa1aaf89ac501232915
sha256: 5c09a0e36ea305c422ac259c810d94d0b2223f6929903c86586d2ca3cbd01c9d
9.8.1:
# The GHC project switched from Debian 9 to Debian 10
url: "https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-i386-deb10-linux.tar.xz"
content-length: 196184860
sha1: d9eb8a3ca268c7ed42c598e66810ebcc5bfcce00
sha256: f59a9914c3590e30a4ce2b74a205a7390bc5edd0259627036a685da1ccaff7a0
9.8.2:
url: "https://downloads.haskell.org/ghc/9.8.2/ghc-9.8.2-i386-deb10-linux.tar.xz"
content-length: 197630384
sha1: c220526f5002204e8a222878039c61665167f52d
sha256: 9607b12351ff1bf8771a037fe943f2e23b7b03f8e7cca9c66b555e11f83610b9
9.10.1:
url: "https://downloads.haskell.org/ghc/9.10.1/ghc-9.10.1-i386-deb10-linux.tar.xz"
content-length: 201283840
sha1: 3975c811f92c88bca0843e656ffcbaa5940491d3
sha256: 5367e692dd9efd9062846334ec6aeeddf186c01b1551b3207649a2ce16f4df76
linux32-nopie:
7.8.4:
url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-7.8.4-release/ghc-7.8.4-i386-unknown-linux-deb7-patch1.tar.xz"
content-length: 79802784
sha1: 476c1ab647bb748e4e4e9ecd7270df08c1e02b8b
7.10.1:
url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-7.10.1-release/ghc-7.10.1-i386-unknown-linux-deb7-patch1.tar.xz"
content-length: 90127328
sha1: b26d75624890f5a17c67605d150b750022e7864e
7.10.2:
url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-7.10.2-release/ghc-7.10.2-i386-unknown-linux-deb7-patch1.tar.xz"
content-length: 90530912
sha1: b8dc39e04e740874b4300da1e102e4d772e2b123
7.10.3:
url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-7.10.3-release/ghc-7.10.3b-i386-deb7-linux-patch1.tar.xz"
content-length: 88226676
sha1: 71277cd3bffd5b3da929971b89400d177de3b8d8
8.0.1:
url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.0.1-release/ghc-8.0.1-i386-deb7-linux-patch1.tar.xz"
content-length: 110798512
sha1: 2ba321f45918f477a1c69d153ca793b4a11540e0
8.0.2:
url: "https://downloads.haskell.org/~ghc/8.0.2/ghc-8.0.2-i386-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.0.2-release/ghc-8.0.2-i386-deb8-linux.tar.xz"
content-length: 112576160
sha1: bb5e2c2989836924db915f97256c8c954e1d42ed
8.2.1:
url: "https://downloads.haskell.org/~ghc/8.2.1/ghc-8.2.1-i386-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.2.1-release/ghc-8.2.1-i386-deb8-linux.tar.xz"
content-length: 122702996
sha1: 6f16930d7f189c74f4fd0bf082036945ddcfb41c
8.2.2:
url: "https://downloads.haskell.org/~ghc/8.2.2/ghc-8.2.2-i386-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.2.2-release/ghc-8.2.2-i386-deb8-linux.tar.xz"
content-length: 122791056
sha1: 0bb8d532e7d7967a1cc4941cb4fa1fa62d665bc9
sha256: 9e67d72d76482e0ba91c718e727b00386a1a12a32ed719714976dc56ca8c8223
8.4.1:
url: "https://downloads.haskell.org/~ghc/8.4.1/ghc-8.4.1-i386-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.4.1-release/ghc-8.4.1-i386-deb8-linux.tar.xz"
content-length: 147022744
sha1: 07f80c51632b17c60d4257a625c88c46e7de35df
sha256: c56c589c76c7ddcb77cdbef885a811761e669d3e76868b723d5be56dedcd4f69
8.4.2:
url: "https://downloads.haskell.org/~ghc/8.4.2/ghc-8.4.2-i386-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.4.2-release/ghc-8.4.2-i386-deb8-linux.tar.xz"
content-length: 147544236
sha1: c9d9acd02d6b0aeb53cd13ac2c5e532904884a3a
sha256: 2d849c30b4c1eac25dc74333501920921e22fa483153f404993808bbda93df05
8.4.3:
url: "https://downloads.haskell.org/~ghc/8.4.3/ghc-8.4.3-i386-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.4.3-release/ghc-8.4.3-i386-deb8-linux.tar.xz"
content-length: 147610164
sha1: bb8b3153d38111d6a0d2ca9a082045b71f6349a0
sha256: f5763983a26dedd88b65a0b17267359a3981b83a642569b26334423f684f8b8c
8.4.4:
url: "https://downloads.haskell.org/~ghc/8.4.4/ghc-8.4.4-i386-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.4.4-release/ghc-8.4.4-i386-deb8-linux.tar.xz"
content-length: 147557416
sha1: 84f83d60ea415df6341df4047e95eadd155987dc
sha256: 678bafaabea6af70ba71ccf0210bb437f9f5591ec28ac1cbbbd5f7aa6894e450
8.6.1:
url: "https://downloads.haskell.org/~ghc/8.6.1/ghc-8.6.1-i386-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.6.1-release/ghc-8.6.1-i386-deb8-linux.tar.xz"
content-length: 177317168
sha1: 8cd4c56adb4bb269d2da87eea157857d3b76c037
sha256: 83573af96e3dec8f67c1a844512f92cbf7d51ae7ceca53d948fc2a3300abd05c
8.6.2:
url: "https://downloads.haskell.org/~ghc/8.6.2/ghc-8.6.2-i386-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.6.2-release/ghc-8.6.2-i386-deb8-linux.tar.xz"
content-length: 177362500
sha1: fd4e000a3a077ce9434ae852dd3798ec9853ccc0
sha256: a288026d9ef22f7ac387edab6b29ef7dcb3b28945c8ea532a15c1fa35d4733ed
8.6.3:
url: "https://downloads.haskell.org/~ghc/8.6.3/ghc-8.6.3-i386-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.6.3-release/ghc-8.6.3-i386-deb8-linux.tar.xz"
content-length: 177351188
sha1: 6965ef1875423532850f61a6a8520be3676ee715
sha256: b57070ba8c70b1333a3e47ce124baf791be39c20a592954772532fd6dd51882f
8.6.4:
url: "https://downloads.haskell.org/~ghc/8.6.4/ghc-8.6.4-i386-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.6.4-release/ghc-8.6.4-i386-deb9-linux.tar.xz"
content-length: 186494668
sha1: 59ed4f57e6079470db5d7b5c4a6886d8639bc544
sha256: 5e2ce88f4d13d23ac37e278e0c7b51c801008931359b9fa8a631d804d2da552c
8.6.5:
url: "https://downloads.haskell.org/~ghc/8.6.5/ghc-8.6.5-i386-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.6.5-release/ghc-8.6.5-i386-deb9-linux.tar.xz"
content-length: 187048424
sha1: 3aab514beadef20d1c31eaa165ae987eedc1c686
sha256: 1cddb907393a669342b1a922dd16d505d9d93d50bd9433a54a8162f8701250dc
8.8.1:
url: "https://downloads.haskell.org/~ghc/8.8.1/ghc-8.8.1-i386-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.8.1-release/ghc-8.8.1-i386-deb9-linux.tar.xz"
content-length: 204669320
sha1: 5c9e1cad872d09f70d493744241d85e0e4b2d772
sha256: 3d3bb75aff2dd79ec87ace10483368681fbc328ff00ebf15edad33420f00f7f5
# Since GHC 8.0.2, these should match linux32 (without any additional configure-env)
# Stack-1.7 will no longer use the '-nopie' builds
# We are no longer adding '-nopie' builds to the metadata as of October 2019
linux32-musl:
8.6.5:
# Mirrored from https://github.com/redneb/ghc-alt-libc/releases
url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.6.5-release/ghc-8.6.5-i386-unknown-linux-musl.tar.xz"
content-length: 139470532
sha1: 05c4113c2fb16f09233a12d291b8badea0032080
sha256: db13ff894faf431f9c64db21c090a1e4e42803794d56720a704c50166c7ca05d
8.8.1:
# Mirrored from https://github.com/redneb/ghc-alt-libc/releases/download/ghc-8.8.1-musl/ghc-8.8.1-i386-unknown-linux-musl.tar.xz
url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.8.1-release/ghc-8.8.1-i386-unknown-linux-musl.tar.xz"
content-length: 159416536
sha1: ad53d6c5448f850df8a7f87152dbb8e5acb5e6b2
sha256: 3f5462341a455a5677fba5cb24da8938878261069da5ee4234b1c6ac2d2ef77e
8.8.2:
# Mirrored from https://github.com/redneb/ghc-alt-libc/releases/download/ghc-8.8.2-musl/ghc-8.8.2-i386-unknown-linux-musl.tar.xz
url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.8.2-release/ghc-8.8.2-i386-unknown-linux-musl.tar.xz"
content-length: 159318020
sha1: 3f13dd6843844bf11d581f94f365c6f45d3e9e06
sha256: 4ea4a81b6b5ba807c93b21b3cddf1f1b4b0fc1ce018cf6aa255a9ee40137b278
8.8.3:
# Mirrored from https://github.com/redneb/ghc-alt-libc/releases/download/ghc-8.8.3-musl/ghc-8.8.3-i386-unknown-linux-musl.tar.xz
url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.8.3-release/ghc-8.8.3-i386-unknown-linux-musl.tar.xz"
content-length: 159226004
sha1: 705ceec62f5fa30196001f418348ed8304f6bf1a
sha256: 7a5f41646d06777e75636291a1855d60a0984552bbdf33c3d107565d302f38a4
8.8.4:
# Mirrored from https://github.com/redneb/ghc-alt-libc/releases/download/ghc-8.8.4-musl/ghc-8.8.4-i386-unknown-linux-musl.tar.xz
url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.8.4-release/ghc-8.8.4-i386-unknown-linux-musl.tar.xz"
content-length: 159158548
sha1: 924e1023472bfdef524b2cdecf114db249b0ba8f
sha256: eb72962707c93ba77edee5788247a01fc8c4524fb113b0b1bbad172aff1d4a36
8.10.1:
# Mirrored from https://github.com/redneb/ghc-alt-libc/releases/download/ghc-8.10.1-musl/ghc-8.10.1-i386-unknown-linux-musl.tar.xz
url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.10.1-release/ghc-8.10.1-i386-unknown-linux-musl.tar.xz"
content-length: 166137820
sha1: acc0032dce6de6d92e9aae72ec77bf1431cb9da2
sha256: 85e4a1db8ad49bfccdeff51a425ec98e21eede6a5d7b87a79272c44584ac092c
8.10.2:
# Mirrored from https://github.com/redneb/ghc-alt-libc/releases/download/ghc-8.10.2-musl/ghc-8.10.2-i386-unknown-linux-musl.tar.xz
url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.10.2-release/ghc-8.10.2-i386-unknown-linux-musl.tar.xz"
content-length: 167059928
sha1: cac29a6bf867cc1b9d5059d927cb588253a493f0
sha256: 685a4099796fa5465e28731571b1e88b80040190f882dba4b02071e27dad2e99
8.10.3:
# Mirrored from https://github.com/redneb/ghc-alt-libc/releases/download/ghc-8.10.3-musl/ghc-8.10.3-i386-unknown-linux-musl.tar.xz
url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.10.3-release/ghc-8.10.3-i386-unknown-linux-musl.tar.xz"
content-length: 168216184
sha1: f69980ef17d4e359d69be183dd674ca1a6ae0cbc
sha256: 4a1ac89a0e6432f7d19af3dc169d885c1fe591c51323a4774a91ce521ecb4f70
8.10.4:
url: "https://github.com/redneb/ghc-alt-libc/releases/download/ghc-8.10.4-musl/ghc-8.10.4-i386-unknown-linux-musl.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.10.4-release/ghc-8.10.4-i386-unknown-linux-musl.tar.xz"
content-length: 168188344
sha1: 9db1e0038d8bf2bb3181be122d18b2e614e99dd4
sha256: 25c601758125e64d43d42023fcb8519906e8aae53ed2ee28507e56e65a86586d
8.10.5:
url: "https://github.com/redneb/ghc-alt-libc/releases/download/ghc-8.8.5-musl/ghc-8.10.5-i386-unknown-linux-musl.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.10.5-release/ghc-8.10.5-i386-unknown-linux-musl.tar.xz"
content-length: 169157132
sha1: ddc25a9604914d8ba814b111d29ba8501955a8fd
sha256: f9cc63a54aef05f388afd0092d9987196b081d585a596d7d2601b6ef0bd58b73
8.10.6:
url: "https://github.com/redneb/ghc-alt-libc/releases/download/ghc-8.10.6-musl/ghc-8.10.6-i386-unknown-linux-musl.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.10.6-release/ghc-8.10.6-i386-unknown-linux-musl.tar.xz"
content-length: 168615100
sha1: 40f75db312975eec088069f5b9d19107f984cf41
sha256: c1b29b9ecaeac465037febd1a039c8284520534315b535098791bd2ca21aca44
8.10.7:
url: "https://github.com/redneb/ghc-alt-libc/releases/download/ghc-8.10.7-musl/ghc-8.10.7-i386-unknown-linux-musl.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.10.7-release/ghc-8.10.7-i386-unknown-linux-musl.tar.xz"
content-length: 168626240
sha1: d4eba03a1730f7b2113c44253a4a7f3b09ad02de
sha256: 3ca3ae457a57419960af0283c1d2d779d1c8368e39fdf6573add899b3f1ad26b
9.0.1:
url: "https://github.com/redneb/ghc-alt-libc/releases/download/ghc-9.0.1-musl/ghc-9.0.1-i386-unknown-linux-musl.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-9.0.1-release/ghc-9.0.1-i386-unknown-linux-musl.tar.xz"
content-length: 169422852
sha1: b48832a98936d5d6ae87caa5253cf8a96a6f51bf
sha256: 7b26289bb0017c54218ddc123f59b4c22d52472caa4c20b3f5c313bec1953314
9.0.2:
url: "https://github.com/redneb/ghc-alt-libc/releases/download/ghc-9.0.2-musl/ghc-9.0.2-i386-unknown-linux-musl.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-9.0.2-release/ghc-9.0.2-i386-unknown-linux-musl.tar.xz"
content-length: 171203252
sha1: 0a9427404bac063ee062357adfb01cefce499f78
sha256: 01dbed1201feff4d7349c14ff95d0dea12fcf566cec7c67b56c3f1a3f3dfd9c0
9.2.1:
url: "https://github.com/redneb/ghc-alt-libc/releases/download/ghc-9.2.1-musl/ghc-9.2.1-i386-unknown-linux-musl.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-9.2.1-release/ghc-9.2.1-i386-unknown-linux-musl.tar.xz"
content-length: 175804380
sha1: 855f3bf08200604e85cad861d7ae6743f4948555
sha256: 2b3e11446255bddfb5a946c5e64987829a5c9585707da69397fd49723db85903
linux64:
7.8.4:
url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-7.8.4-release/ghc-7.8.4-x86_64-unknown-linux-deb7-patch1.tar.xz"
content-length: 80963972
sha1: 0a9a9bd63c40c19463393b8ffd42d3c2d93e91f8
7.10.1:
url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-7.10.1-release/ghc-7.10.1-x86_64-unknown-linux-deb7-patch1.tar.xz"
content-length: 91499436
sha1: 26abc3120f9920ff7a988a278839e4689fce6cf9
7.10.2:
url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-7.10.2-release/ghc-7.10.2-x86_64-unknown-linux-deb7-patch1.tar.xz"
content-length: 91495736
sha1: 6e94ad9ea6966213b1e5345e788d52b5aaaac0db
7.10.3:
url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-7.10.3-release/ghc-7.10.3b-x86_64-deb7-linux-patch1.tar.xz"
content-length: 89516984
sha1: 28ad5781eb9cf1bde8cdde61fcbedb7340604cd4
8.0.1:
url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.0.1-release/ghc-8.0.1-x86_64-deb7-linux-patch1.tar.xz"
content-length: 111218952
sha1: e219245814e8273d476b99da7c54e9b0ebca315f
8.0.2:
url: "https://downloads.haskell.org/~ghc/8.0.2/ghc-8.0.2-x86_64-deb7-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.0.2-release/ghc-8.0.2-x86_64-deb7-linux.tar.xz"
content-length: 112769784
sha1: 929e96628276190c6083e083e0a00265a46edce7
8.2.1:
url: "https://downloads.haskell.org/~ghc/8.2.1/ghc-8.2.1-x86_64-deb7-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.2.1-release/ghc-8.2.1-x86_64-deb7-linux.tar.xz"
content-length: 127680144
sha1: 510c37cb5e285a1720c3ba705867b637ca5de001
8.2.2:
url: "https://downloads.haskell.org/~ghc/8.2.2/ghc-8.2.2-x86_64-deb7-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.2.2-release/ghc-8.2.2-x86_64-deb7-linux.tar.xz"
content-length: 127815304
sha1: 7af4a44973da66399465381c8e3fbb342d6ff2ff
sha256: cd7afbca54edf9890da9f432c63366556246c85c1198e40c99df5af01c555834
8.4.1:
url: "https://downloads.haskell.org/~ghc/8.4.1/ghc-8.4.1-x86_64-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.4.1-release/ghc-8.4.1-x86_64-deb8-linux.tar.xz"
content-length: 152260712
sha1: 6f62cc1287c314b540cf6436cba1766caf044cb2
sha256: 427c77a934b30c3f1de992c38c072afb4323fe6fb30dbac919ca8cb6ae98fbd9
8.4.2:
url: "https://downloads.haskell.org/~ghc/8.4.2/ghc-8.4.2-x86_64-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.4.2-release/ghc-8.4.2-x86_64-deb8-linux.tar.xz"
content-length: 151806080
sha1: af9058feab34ea81f31e328a233baa5c22a29f08
sha256: 246f66eb56f4ad0f1c7755502cfc8f9972f2d067dede17e151f6f479c1f76fbd
8.4.3:
url: "https://downloads.haskell.org/~ghc/8.4.3/ghc-8.4.3-x86_64-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.4.3-release/ghc-8.4.3-x86_64-deb8-linux.tar.xz"
content-length: 151870024
sha1: ece4a75cefa21992683266a1f8fad995dc75245f
sha256: 30a402c6d4754a6c020e0547f19ae3ac42e907e35349aa932d347f73e421a8e2
8.4.4:
url: "https://downloads.haskell.org/~ghc/8.4.4/ghc-8.4.4-x86_64-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.4.4-release/ghc-8.4.4-x86_64-deb8-linux.tar.xz"
content-length: 151910212
sha1: f132449742711cd4ef8534067f9dbb09bfae20e7
sha256: 4c2a8857f76b7f3e34ecba0b51015d5cb8b767fe5377a7ec477abde10705ab1a
8.6.1:
url: "https://downloads.haskell.org/~ghc/8.6.1/ghc-8.6.1-x86_64-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.6.1-release/ghc-8.6.1-x86_64-deb8-linux.tar.xz"
content-length: 179223364
sha1: 6ff44e86582c8360620b8f3e353e208aeb72c58e
sha256: 6d8784401b7dd80c90fa17306ec0539920e3987399a2c7ef247989e53197dc42
8.6.2:
url: "https://downloads.haskell.org/~ghc/8.6.2/ghc-8.6.2-x86_64-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.6.2-release/ghc-8.6.2-x86_64-deb8-linux.tar.xz"
content-length: 179351624
sha1: 67b0e8ee52f20cf2797b1ac81af6f89235dc8e50
sha256: 13f96e8b83bb5bb60f955786ff9085744c24927a33be8a17773f84c7c248533a
8.6.3:
url: "https://downloads.haskell.org/~ghc/8.6.3/ghc-8.6.3-x86_64-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.6.3-release/ghc-8.6.3-x86_64-deb8-linux.tar.xz"
content-length: 179335960
sha1: 0ee1ed815f24b6bb51a466cab8d2da7683592a9a
sha256: 291ca565374f4d51cc311488581f3279d3167a064fabfd4a6722fe2bd4532fd5
8.6.4:
url: "https://downloads.haskell.org/~ghc/8.6.4/ghc-8.6.4-x86_64-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.6.4-release/ghc-8.6.4-x86_64-deb8-linux.tar.xz"
content-length: 185834596
sha1: 434988420a61279d0fa9d61155cd7aeeba33c308
sha256: 34ef5fc8ddf2fc32a027180bea5b1c8a81ea840c87faace2977a572188d4b42d
8.6.5:
url: "https://downloads.haskell.org/~ghc/8.6.5/ghc-8.6.5-x86_64-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.6.5-release/ghc-8.6.5-x86_64-deb8-linux.tar.xz"
content-length: 184373828
sha1: a39933ccfcb3fc10fe8f0be3b1f0e61dcb4a3e34
sha256: c419fd0aa9065fe4d2eb9a248e323860c696ddf3859749ca96a84938aee49107
8.8.1:
url: "https://downloads.haskell.org/~ghc/8.8.1/ghc-8.8.1-x86_64-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.8.1-release/ghc-8.8.1-x86_64-deb8-linux.tar.xz"
content-length: 195900372
sha1: 0463026056657ef024a608fb41b406cb69deaf85
sha256: fd96eb851971fbc3332bf2fa7821732cfa8b37e5a076a69f6a06f83f0ea7ccc5
8.8.2:
url: "https://downloads.haskell.org/~ghc/8.8.2/ghc-8.8.2-x86_64-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.8.2-release/ghc-8.8.2-x86_64-deb8-linux.tar.xz"
content-length: 196276084
sha1: 4aad81a524c8405a72f8ffe0d3c6f41bafaa231f
sha256: fbe69652eba75dadb758d00292247d17fb018c29cac5acd79843e56311256c9f
8.8.3:
url: "https://downloads.haskell.org/~ghc/8.8.3/ghc-8.8.3-x86_64-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.8.3-release/ghc-8.8.3-x86_64-deb8-linux.tar.xz"
content-length: 196286620
sha1: a240d4fa2ac50fb08623f8f8f4f79615fe47d204
sha256: 92b9fadc442976968d2c190c14e000d737240a7d721581cda8d8741b7bd402f0
8.8.4:
url: "https://downloads.haskell.org/~ghc/8.8.4/ghc-8.8.4-x86_64-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.8.4-release/ghc-8.8.4-x86_64-deb9-linux.tar.xz"
content-length: 207233624
sha1: e83e205d2d88c81e16306c42c843ae8b364c156a
sha256: 4862559d221153caf978f4bf2c15a82c114d1e1f43b298b2ecff2ac94b586d20
8.10.1:
url: "https://downloads.haskell.org/~ghc/8.10.1/ghc-8.10.1-x86_64-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.10.1-release/ghc-8.10.1-x86_64-deb9-linux.tar.xz"
content-length: 212806588
sha1: 4d50d074123e686eb0313c90a24959b26131f73c
sha256: d1cf7886f27af070f3b7dbe1975a78b43ef2d32b86362cbe953e79464fe70761
8.10.2:
url: "https://downloads.haskell.org/~ghc/8.10.2/ghc-8.10.2-x86_64-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.10.2-release/ghc-8.10.2-x86_64-deb9-linux.tar.xz"
content-length: 214854644
sha1: afe3a9234cf0124461fd4ccb6ae8d6e338b95b88
sha256: 4dbe3b479e76767bfeb4cbb7a4db8b761c4720266193483ca370b2ace3f10f7c
8.10.3:
url: "https://downloads.haskell.org/~ghc/8.10.3/ghc-8.10.3-x86_64-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.10.3-release/ghc-8.10.3-x86_64-deb9-linux.tar.xz"
content-length: 216376220
sha1: 570eb691e302076a83e11250756e82ca4b006b50
sha256: 95e4aadea30701fe5ab84d15f757926d843ded7115e11c4cd827809ca830718d
8.10.4:
url: "http://downloads.haskell.org/~ghc/8.10.4/ghc-8.10.4-x86_64-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.10.4-release/ghc-8.10.4-x86_64-deb9-linux.tar.xz"
content-length: 216465048
sha1: 4c8ac9e8c047db4b8a5131275b9bfbf824988d8f
sha256: 5694200a5c38f22c142baf850b1d2f3784211d2ec9302e11693259a1ae8e38b7
8.10.5:
url: "http://downloads.haskell.org/~ghc/8.10.5/ghc-8.10.5-x86_64-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.10.5-release/ghc-8.10.5-x86_64-deb9-linux.tar.xz"
content-length: 217502504
sha1: 282a04e043b8030d93684e5f1386f838d90012ab
sha256: 15e71325c3bdfe3804be0f84c2fc5c913d811322d19b0f4d4cff20f29cdd804d
8.10.6:
url: "http://downloads.haskell.org/~ghc/8.10.6/ghc-8.10.6-x86_64-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.10.6-release/ghc-8.10.6-x86_64-deb9-linux.tar.xz"
content-length: 216704956
sha1: daea0db60a526a786f23ebd514d5aa110b99dd1e
sha256: c14b631437ebc867f1fe1648579bc1dbe1a9b9ad31d7c801c3c77639523a83ae
8.10.7:
url: "http://downloads.haskell.org/~ghc/8.10.7/ghc-8.10.7-x86_64-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.10.7-release/ghc-8.10.7-x86_64-deb9-linux.tar.xz"
content-length: 216694212
sha1: 88d20c49c4c33fa40f4e350665a8ae50e288d544
sha256: ced9870ea351af64fb48274b81a664cdb6a9266775f1598a79cbb6fdd5770a23
9.0.1:
url: "http://downloads.haskell.org/~ghc/9.0.1/ghc-9.0.1-x86_64-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-9.0.1-release/ghc-9.0.1-x86_64-deb9-linux.tar.xz"
content-length: 217978008
sha1: 324c47d98b80a55828d4e70701ed5894d33e8f5f
sha256: 4ca6252492f59fe589029fadca4b6f922d6a9f0ff39d19a2bd9886fde4e183d5
9.0.2:
url: "http://downloads.haskell.org/~ghc/9.0.2/ghc-9.0.2-x86_64-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-9.0.2-release/ghc-9.0.2-x86_64-deb9-linux.tar.xz"
content-length: 234240804
sha1: 1a62ae3174c7a0db79600c728cc89b3e0d996ccb
sha256: 805f5628ce6cec678ba77ff48c924831ebdf75ec2c66368e8935a618913a150e
9.2.1:
url: "http://downloads.haskell.org/~ghc/9.2.1/ghc-9.2.1-x86_64-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-9.2.1-release/ghc-9.2.1-x86_64-deb9-linux.tar.xz"
content-length: 243336888
sha1: 53eba996cd4bb679158a90733916510c77dc4f05
sha256: f09133ed735e9f3b221b5ed54787e5651f039ed0f7dab0ab834a27c8ca68fc9b
9.2.2:
url: "http://downloads.haskell.org/~ghc/9.2.2/ghc-9.2.2-x86_64-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-9.2.2-release/ghc-9.2.2-x86_64-deb9-linux.tar.xz"
content-length: 245245764
sha1: 017a787dc21b70d3b3dabaee0af8ad45c8e1e76a
sha256: 91052766a8bec6a1a8529eda9ff587ce821a071cf52705e1b8caa3d38d3913f4
9.2.3:
url: "https://downloads.haskell.org/~ghc/9.2.3/ghc-9.2.3-x86_64-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-9.2.3-release/ghc-9.2.3-x86_64-deb9-linux.tar.xz"
content-length: 245001460
sha1: 1dfae62c6a16dedd803e83857682828132da05ed
sha256: 7a3198fff8ae59abe071103dbf4a55d595fe79e93e47d4e22f605097ae1402f1
9.2.4:
url: "https://downloads.haskell.org/~ghc/9.2.4/ghc-9.2.4-x86_64-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-9.2.4-release/ghc-9.2.4-x86_64-deb9-linux.tar.xz"
content-length: 244379336
sha1: 0a7f0bbb5e2b070c4f9391a3f25219aa8202880e
sha256: e6eccc65a3dded27291c3f80cce18b1e51fd64e92bad7556142020f0ffe3f7aa
9.2.5:
url: "https://downloads.haskell.org/~ghc/9.2.5/ghc-9.2.5-x86_64-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-9.2.5-release/ghc-9.2.5-x86_64-deb9-linux.tar.xz"
content-length: 243896940
sha1: 7e8169faeee0ead121fafc6bab724fcf7f414479
sha256: 2d115b7258751f0e4481e35b5953ca3c7870e8ec9ce68f1d32fc014ddc29b2a5
9.2.6:
url: "https://downloads.haskell.org/~ghc/9.2.6/ghc-9.2.6-x86_64-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-9.2.6-release/ghc-9.2.6-x86_64-deb9-linux.tar.xz"
content-length: 244400440
sha1: 7617993408434e9a9960b0f4190c4c6b9448f1d5
sha256: a2799409be6a1f5dbb9382b0b1b70d406567b3f6592c6a4f795d8b0b1ae6d4a1
9.2.7:
url: "https://downloads.haskell.org/~ghc/9.2.7/ghc-9.2.7-x86_64-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-9.2.7-release/ghc-9.2.7-x86_64-deb9-linux.tar.xz"
content-length: 244327148
sha1: 31f43705fed5bad863a45cf9f9bbf6ef6699e11c
sha256: d57b7df77ed80b7a37601c6b99a9458f9d1e937f3ec91b1454bb88a70302919a
9.2.8:
url: "https://downloads.haskell.org/~ghc/9.2.8/ghc-9.2.8-x86_64-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-9.2.8-release/ghc-9.2.8-x86_64-deb9-linux.tar.xz"
content-length: 244594508
sha1: b2bce9bf2c750df95a7be052f39023a12d51179a
sha256: 2b0d865a507fe3bb2c24c31e193436a79d58c857a0f7bf7e4dbfe990c9169275
9.4.1:
url: "https://downloads.haskell.org/~ghc/9.4.1/ghc-9.4.1-x86_64-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-9.4.1-release/ghc-9.4.1-x86_64-deb9-linux.tar.xz"
content-length: 187546168
sha1: 52d1f4b09af142733b66eb9c94542879b63c0592
sha256: 3bfd5c5c7d75cb3409cf037c5e1616b10a1bf9409930b00f237fdb5c1f5a534a
9.4.2:
url: "https://downloads.haskell.org/~ghc/9.4.2/ghc-9.4.2-x86_64-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-9.4.2-release/ghc-9.4.2-x86_64-deb9-linux.tar.xz"
content-length: 184659692
sha1: 78deb4b6bbc8ad9ae9c40993068be56a66b81a51
sha256: 71096aea1950ddf64b68ea7ac618ded9531a4c6327d65d258e2c0e3e87dbc81b
9.4.3:
url: "https://downloads.haskell.org/~ghc/9.4.3/ghc-9.4.3-x86_64-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-9.4.3-release/ghc-9.4.3-x86_64-deb9-linux.tar.xz"
content-length: 186095936
sha1: eae3ceab67b41ae5180a45df5e5e1a7535e16d2d
sha256: 5419f7df67087646a663d1e16910301287dca027e815f28b532840dc1b8fc4fa
9.4.4:
url: "https://downloads.haskell.org/~ghc/9.4.4/ghc-9.4.4-x86_64-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-9.4.4-release/ghc-9.4.4-x86_64-deb9-linux.tar.xz"
content-length: 185341088
sha1: 408a3e5efe51af78a8645c6703b2281194001451
sha256: 5b8751614fa60ecab2ce244bfe8c75603e9e475f5087192cd4598148eb127045
9.4.5:
url: "https://downloads.haskell.org/~ghc/9.4.5/ghc-9.4.5-x86_64-deb9-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-9.4.5-release/ghc-9.4.5-x86_64-deb9-linux.tar.xz"
content-length: 181151460
sha1: 4238264d4f0aec368d2138e31a9535b3f71d2a17
sha256: 7508314c884c69738e93eb69b919d965e83c444830ae53c5991818f8414634be
9.4.6:
url: "https://downloads.haskell.org/~ghc/9.4.6/ghc-9.4.6-x86_64-deb9-linux.tar.xz"
content-length: 187344076
sha1: 34ae5b7cfb6f1c75c1bd93389ea12e4ac1cfdb68
sha256: 345267ac5c142c7914debffc5c1f9cafd2bec100eb1fb70aa8b114c28d33dc0f
9.4.7:
url: "https://downloads.haskell.org/~ghc/9.4.7/ghc-9.4.7-x86_64-deb9-linux.tar.xz"
content-length: 187476096
sha1: 4140ad3c2e284b84b4ad6989aa56d6581e8e61be
sha256: 52a20a1f87b84ce6b34d830a849cd29404228cfbfeb114f81ea28bcb60edeca8
9.4.8:
url: "https://downloads.haskell.org/~ghc/9.4.8/ghc-9.4.8-x86_64-deb9-linux.tar.xz"
content-length: 181181748
sha1: aa1c6c43df32a3666c6ef0bd6a360082d949cfd9
sha256: b9d2b4326c907c5ce5fe0502ea089583c1af4529a17f2e18d103f10f430bb036
9.6.1:
url: "https://downloads.haskell.org/~ghc/9.6.1/ghc-9.6.1-x86_64-deb9-linux.tar.xz"
content-length: 191060464
sha1: f8b40990fe35198c6c426a3cf4684dfc77de5244
sha256: 3c727e93a82ff039fbedd6645518859849130a0fc93b7181cd69a41800aa639c
9.6.2:
url: "https://downloads.haskell.org/~ghc/9.6.2/ghc-9.6.2-x86_64-deb9-linux.tar.xz"
content-length: 186564456
sha1: 01c4e30625986352f406fafa94d91987ef9b4de8
sha256: c18946d886ee00710e44da9aeb07f2b025a686c76309fcf37c421f0f800d72ac
9.6.3:
url: "https://downloads.haskell.org/~ghc/9.6.3/ghc-9.6.3-x86_64-deb9-linux.tar.xz"
content-length: 185909780
sha1: 39f95a17e34f0f0e0cd6a717c708faac3458d83a
sha256: ba11f4e91448a9d7243f07dde2a1bdf68288427ad454aa17854e56f59c5a5337
9.6.4:
url: "https://downloads.haskell.org/~ghc/9.6.4/ghc-9.6.4-x86_64-deb9-linux.tar.xz"
content-length: 192316036
sha1: c3a841a9a3570233cc534a7e6d1c0085d92deb8b
sha256: 972c1c7cbc276741ceb9e4efc58ad4727e163317d5dcbf350404b84470300271
9.6.5:
url: "https://downloads.haskell.org/ghc/9.6.5/ghc-9.6.5-x86_64-deb9-linux.tar.xz"
content-length: 189447716
sha1: 8f7a462aeb862d6c9856a75a09e5d3bfe3c7bb73
sha256: d37024b8f300098025b3612e210366fcfafd717de3eac9bc29c29f3c280bb6a1
9.6.6:
url: "https://downloads.haskell.org/ghc/9.6.6/ghc-9.6.6-x86_64-deb9-linux.tar.xz"
content-length: 192870372
sha1: a362e00307477457d0bc014ec2594f58b68c1442
sha256: ff5b4929a4e89c536e7badb3b142e353dc4bda1f31d3ee446406ad88c3bebddf
9.8.1:
url: "https://downloads.haskell.org/~ghc/9.8.1/ghc-9.8.1-x86_64-deb9-linux.tar.xz"
content-length: 202098276
sha1: 7dfb3ab1c34e309902eabedf6f1f58e3e9825a56
sha256: 9bfd288e495488ac352de045cc8b3bab509070a5b818cc36b2dfe6097dd7c872
9.8.2:
url: "https://downloads.haskell.org/ghc/9.8.2/ghc-9.8.2-x86_64-deb9-linux.tar.xz"
content-length: 198430944
sha1: f469c994fb26a4465d393962f5280874d9294fb4
sha256: 9ff735b0b9dcb0c48cc32d6df7826b6ee9b2fdf1f1e056f015bab9e79fc86c11
9.10.1:
url: "https://downloads.haskell.org/ghc/9.10.1/ghc-9.10.1-x86_64-deb9-linux.tar.xz"
content-length: 204137160
sha1: 8cd925b3abcbf776c9a6d739b9fa82f21c4f8371
sha256: 5c4fb1c2185320afd6b1efaa155f97e956fa782004ce829fb41879ad0fd1cd14
linux64-nopie:
7.8.4:
url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-7.8.4-release/ghc-7.8.4-x86_64-unknown-linux-deb7-patch1.tar.xz"
content-length: 80963972
sha1: 0a9a9bd63c40c19463393b8ffd42d3c2d93e91f8
7.10.1:
url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-7.10.1-release/ghc-7.10.1-x86_64-unknown-linux-deb7-patch1.tar.xz"
content-length: 91499436
sha1: 26abc3120f9920ff7a988a278839e4689fce6cf9
7.10.2:
url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-7.10.2-release/ghc-7.10.2-x86_64-unknown-linux-deb7-patch1.tar.xz"
content-length: 91495736
sha1: 6e94ad9ea6966213b1e5345e788d52b5aaaac0db
7.10.3:
url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-7.10.3-release/ghc-7.10.3b-x86_64-deb7-linux-patch1.tar.xz"
content-length: 89516984
sha1: 28ad5781eb9cf1bde8cdde61fcbedb7340604cd4
8.0.1:
url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.0.1-release/ghc-8.0.1-x86_64-deb7-linux-patch1.tar.xz"
content-length: 111218952
sha1: e219245814e8273d476b99da7c54e9b0ebca315f
8.0.2:
url: "https://downloads.haskell.org/~ghc/8.0.2/ghc-8.0.2-x86_64-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.0.2-release/ghc-8.0.2-x86_64-deb8-linux.tar.xz"
content-length: 114373576
sha1: f298b7d0f37cc9ded7ac66b2662b0fa5ac6d0809
8.2.1:
url: "https://downloads.haskell.org/~ghc/8.2.1/ghc-8.2.1-x86_64-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.2.1-release/ghc-8.2.1-x86_64-deb8-linux.tar.xz"
content-length: 126809836
sha1: 3e52527de6f1cad6d7f1c392ddde8148116d4e36
8.2.2:
url: "https://downloads.haskell.org/~ghc/8.2.2/ghc-8.2.2-x86_64-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.2.2-release/ghc-8.2.2-x86_64-deb8-linux.tar.xz"
content-length: 127028808
sha1: 7d0312d0ad3e5c5602e1102d6454ff390e961851
sha256: 48e205c62b9dc1ccf6739a4bc15a71e56dde2f891a9d786a1b115f0286111b2a
8.4.1:
url: "https://downloads.haskell.org/~ghc/8.4.1/ghc-8.4.1-x86_64-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.4.1-release/ghc-8.4.1-x86_64-deb8-linux.tar.xz"
content-length: 152260712
sha1: 6f62cc1287c314b540cf6436cba1766caf044cb2
sha256: 427c77a934b30c3f1de992c38c072afb4323fe6fb30dbac919ca8cb6ae98fbd9
8.4.2:
url: "https://downloads.haskell.org/~ghc/8.4.2/ghc-8.4.2-x86_64-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.4.2-release/ghc-8.4.2-x86_64-deb8-linux.tar.xz"
content-length: 151806080
sha1: af9058feab34ea81f31e328a233baa5c22a29f08
sha256: 246f66eb56f4ad0f1c7755502cfc8f9972f2d067dede17e151f6f479c1f76fbd
8.4.3:
url: "https://downloads.haskell.org/~ghc/8.4.3/ghc-8.4.3-x86_64-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.4.3-release/ghc-8.4.3-x86_64-deb8-linux.tar.xz"
content-length: 151870024
sha1: ece4a75cefa21992683266a1f8fad995dc75245f
sha256: 30a402c6d4754a6c020e0547f19ae3ac42e907e35349aa932d347f73e421a8e2
8.4.4:
url: "https://downloads.haskell.org/~ghc/8.4.4/ghc-8.4.4-x86_64-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.4.4-release/ghc-8.4.4-x86_64-deb8-linux.tar.xz"
content-length: 151910212
sha1: f132449742711cd4ef8534067f9dbb09bfae20e7
sha256: 4c2a8857f76b7f3e34ecba0b51015d5cb8b767fe5377a7ec477abde10705ab1a
8.6.1:
url: "https://downloads.haskell.org/~ghc/8.6.1/ghc-8.6.1-x86_64-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.6.1-release/ghc-8.6.1-x86_64-deb8-linux.tar.xz"
content-length: 179223364
sha1: 6ff44e86582c8360620b8f3e353e208aeb72c58e
sha256: 6d8784401b7dd80c90fa17306ec0539920e3987399a2c7ef247989e53197dc42
8.6.2:
url: "https://downloads.haskell.org/~ghc/8.6.2/ghc-8.6.2-x86_64-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.6.2-release/ghc-8.6.2-x86_64-deb8-linux.tar.xz"
content-length: 179351624
sha1: 67b0e8ee52f20cf2797b1ac81af6f89235dc8e50
sha256: 13f96e8b83bb5bb60f955786ff9085744c24927a33be8a17773f84c7c248533a
8.6.3:
url: "https://downloads.haskell.org/~ghc/8.6.3/ghc-8.6.3-x86_64-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.6.3-release/ghc-8.6.3-x86_64-deb8-linux.tar.xz"
content-length: 179335960
sha1: 0ee1ed815f24b6bb51a466cab8d2da7683592a9a
sha256: 291ca565374f4d51cc311488581f3279d3167a064fabfd4a6722fe2bd4532fd5
8.6.4:
url: "https://downloads.haskell.org/~ghc/8.6.4/ghc-8.6.4-x86_64-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.6.4-release/ghc-8.6.4-x86_64-deb8-linux.tar.xz"
content-length: 185834596
sha1: 434988420a61279d0fa9d61155cd7aeeba33c308
sha256: 34ef5fc8ddf2fc32a027180bea5b1c8a81ea840c87faace2977a572188d4b42d
8.6.5:
url: "https://downloads.haskell.org/~ghc/8.6.5/ghc-8.6.5-x86_64-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.6.5-release/ghc-8.6.5-x86_64-deb8-linux.tar.xz"
content-length: 184373828
sha1: a39933ccfcb3fc10fe8f0be3b1f0e61dcb4a3e34
sha256: c419fd0aa9065fe4d2eb9a248e323860c696ddf3859749ca96a84938aee49107
8.8.1:
url: "https://downloads.haskell.org/~ghc/8.8.1/ghc-8.8.1-x86_64-deb8-linux.tar.xz"
#mirror-url: "https://github.com/commercialhaskell/ghc/releases/download/ghc-8.8.1-release/ghc-8.8.1-x86_64-deb8-linux.tar.xz"
content-length: 195900372
sha1: 0463026056657ef024a608fb41b406cb69deaf85
sha256: fd96eb851971fbc3332bf2fa7821732cfa8b37e5a076a69f6a06f83f0ea7ccc5
# Since GHC 8.0.2, these should match linux64 (without any additional configure-env)
# Stack-1.7 will no longer use the '-nopie' builds
# We are no longer adding '-nopie' builds to the metadata as of October 2019
linux64-musl: