Skip to content

Commit 0cec4b1

Browse files
authored
Adapt to more recent haskell.nix (#107)
1 parent 74fe0a9 commit 0cec4b1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/core/mkShellWith.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ let
3434
};
3535

3636
ghc = if shell.tools.haskellCompilerVersion == null then
37-
"ghc8107"
37+
"ghc96"
3838
else
3939
shell.tools.haskellCompilerVersion;
4040

src/ext/cabal-fmt.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ let
77

88
version = "0.1.12";
99

10-
compiler-nix-name = "ghc92";
10+
compiler-nix-name = "ghc96";
1111

1212
# Cabal is a lib library, so haskell.nix would normally use the one coming
1313
# from the compiler-nix-name (currently 3.2). However cabal-fmt depends on

src/ext/fourmolu.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ let
77
project = pkgs.haskell-nix.hackage-project {
88
name = "fourmolu";
99
version = "0.16.2.0";
10-
compiler-nix-name = "ghc982";
10+
compiler-nix-name = "ghc98";
1111

1212
modules =
1313
[{ packages.fourmolu.components.exes.fourmolu.dontStrip = false; }];

0 commit comments

Comments
 (0)