Skip to content

Commit 3ac426d

Browse files
committed
Fix ghc-9.6
1 parent 526d3be commit 3ac426d

File tree

2 files changed

+29
-11
lines changed

2 files changed

+29
-11
lines changed

flake.lock

Lines changed: 24 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -142,10 +142,10 @@
142142
compiler-nix-name =
143143
if system == "x86_64-linux"
144144
then lib.mkDefault "ghc810"
145-
else lib.mkDefault "ghc963";
145+
else lib.mkDefault "ghc96";
146146
flake.variants =
147147
let
148-
compilers = lib.optionals (system == "x86_64-linux") ["ghc963"];
148+
compilers = lib.optionals (system == "x86_64-linux") ["ghc96"];
149149
in
150150
lib.genAttrs compilers (c: { compiler-nix-name = c; });
151151

@@ -154,7 +154,7 @@
154154
};
155155

156156
shell.tools = {
157-
cabal = "3.10.1.0";
157+
cabal = "3.10.3.0";
158158
ghcid = "0.8.8";
159159
haskell-language-server = {
160160
src = nixpkgs.haskell-nix.sources."hls-1.10";
@@ -319,8 +319,8 @@
319319
nonRequiredMacOSPaths = [
320320
"checks.cardano-chain-gen:test:cardano-chain-gen"
321321
"checks.cardano-db:test:test-db"
322-
"ghc963.checks.cardano-chain-gen:test:cardano-chain-gen"
323-
"ghc963.checks.cardano-db:test:test-db"
322+
"ghc96.checks.cardano-chain-gen:test:cardano-chain-gen"
323+
"ghc96.checks.cardano-db:test:test-db"
324324
];
325325

326326
nonRequiredPaths =

0 commit comments

Comments
 (0)