Skip to content

Commit

Permalink
Fix ghc-9.6
Browse files Browse the repository at this point in the history
  • Loading branch information
kderme committed Apr 17, 2024
1 parent 526d3be commit 3ac426d
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 11 deletions.
30 changes: 24 additions & 6 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -142,10 +142,10 @@
compiler-nix-name =
if system == "x86_64-linux"
then lib.mkDefault "ghc810"
else lib.mkDefault "ghc963";
else lib.mkDefault "ghc96";
flake.variants =
let
compilers = lib.optionals (system == "x86_64-linux") ["ghc963"];
compilers = lib.optionals (system == "x86_64-linux") ["ghc96"];
in
lib.genAttrs compilers (c: { compiler-nix-name = c; });

Expand All @@ -154,7 +154,7 @@
};

shell.tools = {
cabal = "3.10.1.0";
cabal = "3.10.3.0";
ghcid = "0.8.8";
haskell-language-server = {
src = nixpkgs.haskell-nix.sources."hls-1.10";
Expand Down Expand Up @@ -319,8 +319,8 @@
nonRequiredMacOSPaths = [
"checks.cardano-chain-gen:test:cardano-chain-gen"
"checks.cardano-db:test:test-db"
"ghc963.checks.cardano-chain-gen:test:cardano-chain-gen"
"ghc963.checks.cardano-db:test:test-db"
"ghc96.checks.cardano-chain-gen:test:cardano-chain-gen"
"ghc96.checks.cardano-db:test:test-db"
];

nonRequiredPaths =
Expand Down

0 comments on commit 3ac426d

Please sign in to comment.