Skip to content

Commit 45cf33a

Browse files
committed
build(nix): Add ghc98 to hydraJobs
1 parent cb6cdcf commit 45cf33a

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

flake.nix

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,11 @@
152152
else lib.mkDefault "ghc96";
153153
flake.variants =
154154
let
155-
compilers = lib.optionals (system == "x86_64-linux") ["ghc96"];
155+
compilers =
156+
if (system == "x86_64-linux") then
157+
["ghc96" "ghc98"]
158+
else
159+
["ghc98"];
156160
in
157161
lib.genAttrs compilers (c: { compiler-nix-name = c; });
158162

0 commit comments

Comments
 (0)