Skip to content

Commit 71da501

Browse files
committed
Add GHC 9.12 and remove 9.0, 9.2 and 9.4
1 parent d316c03 commit 71da501

File tree

3 files changed

+47
-34
lines changed

3 files changed

+47
-34
lines changed

.github/workflows/hello.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
#- aarch64-linux
1919
compiler-nix-name:
2020
- ghc810
21-
- ghc92
2221
- ghc96
2322
- ghc98
2423
- ghc910
24+
- ghc912
2525
target-platform:
2626
- ""
2727
- "-static"
@@ -37,8 +37,6 @@ jobs:
3737
# Just cross compiling javascript with ghc 9.6 for now
3838
- compiler-nix-name: ghc810
3939
target-platform: "-js"
40-
- compiler-nix-name: ghc92
41-
target-platform: "-js"
4240
# Static builds not working for darwin yet
4341
- platform: x86_64-darwin
4442
target-platform: "-static"

flake.lock

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

flake.nix

+2-4
Original file line numberDiff line numberDiff line change
@@ -89,12 +89,10 @@
8989
# projects do (that way we can use short names)
9090
let compilers = pkgs: pkgs.lib.genAttrs [
9191
"ghc810"
92-
"ghc90"
93-
"ghc92"
94-
"ghc94"
9592
"ghc96"
9693
"ghc98"
97-
"ghc910"] (short-name: rec {
94+
"ghc910"
95+
"ghc912"] (short-name: rec {
9896
inherit pkgs self toolsModule;
9997
compiler-nix-name = pkgs.haskell-nix.resolve-compiler-name short-name;
10098
compiler = pkgs.buildPackages.haskell-nix.compiler.${compiler-nix-name};

0 commit comments

Comments
 (0)