Skip to content

Commit 93735af

Browse files
committed
Able to build all artifacts
1 parent ac4817c commit 93735af

File tree

2 files changed

+170
-48
lines changed

2 files changed

+170
-48
lines changed

flake.lock

+122-46
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

+48-2
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,52 @@
1919
inherit src;
2020
evalSystem = "x86_64-linux";
2121
inherit compiler-nix-name;
22+
modules = [
23+
{
24+
reinstallableLibGhc = false;
25+
nonReinstallablePkgs = [
26+
"rts"
27+
"ghc-heap"
28+
"ghc-prim"
29+
"integer-gmp"
30+
"integer-simple"
31+
"base"
32+
"deepseq"
33+
"array"
34+
"ghc-boot-th"
35+
"pretty"
36+
"template-haskell"
37+
"ghcjs-prim"
38+
"ghcjs-th"
39+
"ghc-bignum"
40+
"exceptions"
41+
"stm"
42+
"ghc-boot"
43+
"ghc"
44+
"Cabal"
45+
"Win32"
46+
"array"
47+
"binary"
48+
"bytestring"
49+
"containers"
50+
"directory"
51+
"filepath"
52+
"ghc-boot"
53+
"ghc-compact"
54+
"ghc-prim"
55+
"hpc"
56+
"mtl"
57+
"parsec"
58+
"process"
59+
"text"
60+
"time"
61+
"transformers"
62+
"unix"
63+
"xhtml"
64+
"terminfo"
65+
];
66+
}
67+
];
2268
};
2369
})
2470
];
@@ -64,8 +110,8 @@
64110
{ name = "ghc8107"; stackYaml = "stack-8.10.7.yaml"; }
65111
{ name = "ghc902"; stackYaml = "stack-9.0.2.yaml"; }
66112
{ name = "ghc928"; stackYaml = "stack-9.2.8.yaml"; }
67-
# { name = "ghc947"; stackYaml = "stack-9.4.7.yaml"; }
68-
# { name = "ghc962"; stackYaml = "stack-9.6.2.yaml"; }
113+
{ name = "ghc947"; stackYaml = "stack-9.4.7.yaml"; }
114+
{ name = "ghc963"; stackYaml = "stack-9.6.3.yaml"; }
69115
]
70116
);
71117

0 commit comments

Comments
 (0)