Skip to content

Commit

Permalink
update ghc and fix the records error fr this time
Browse files Browse the repository at this point in the history
  • Loading branch information
bristermitten committed Oct 16, 2024
1 parent 2cd90df commit 48c8980
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 33 deletions.
54 changes: 24 additions & 30 deletions flake.lock

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

4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

autoWire = [ "packages" "apps" "checks" ]; # Wire all but the devShell

basePackages = pkgs.haskell.packages.ghc94;
basePackages = pkgs.haskell.packages.ghc98;

devShell = {
tools = hp: {
Expand All @@ -42,7 +42,7 @@
# fourmolu.source = "0.11.0.0";
hedgehog.source = "1.4";
tasty-hedgehog.source = "1.4.0.2";

hlint.source = "3.8";
};

settings = {
Expand Down
3 changes: 2 additions & 1 deletion src/JVM/Data/Abstract/Builder/Code.hs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{-# LANGUAGE DisambiguateRecordFields #-}
{-# LANGUAGE LambdaCase #-}
{-# LANGUAGE TemplateHaskell #-}

Expand All @@ -6,7 +7,7 @@ module JVM.Data.Abstract.Builder.Code where
import Data.TypeMergingList (TypeMergingList)
import Data.TypeMergingList qualified as TML
import JVM.Data.Abstract.Builder.Label
import JVM.Data.Abstract.ClassFile.Method hiding (code)
import JVM.Data.Abstract.ClassFile.Method (CodeAttribute)
import JVM.Data.Abstract.Instruction
import Polysemy
import Polysemy.State
Expand Down

0 comments on commit 48c8980

Please sign in to comment.