Skip to content

Commit

Permalink
Upgrade flake inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
shane-circuithub committed Sep 29, 2023
1 parent 0ebb70f commit cb7b0fa
Show file tree
Hide file tree
Showing 4 changed files with 92 additions and 49 deletions.
130 changes: 85 additions & 45 deletions flake.lock

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

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
};

rel8 = pkgs.haskell-nix.project {
compiler-nix-name = "ghc945";
compiler-nix-name = "ghc962";

cabalProjectLocal = builtins.readFile ./cabal.project.haskell-nix;

Expand Down
5 changes: 3 additions & 2 deletions rel8.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ library
build-depends:
aeson
, attoparsec
, base ^>= 4.14 || ^>=4.15 || ^>=4.16 || ^>=4.17
, attoparsec-aeson
, base ^>= 4.14 || ^>=4.15 || ^>=4.16 || ^>=4.17 || ^>=4.18
, base16 >= 1.0
, base-compat ^>= 0.11 || ^>= 0.12 || ^>= 0.13
, bifunctors
Expand Down Expand Up @@ -240,7 +241,7 @@ test-suite tests
, data-dword
, hasql
, hasql-transaction
, hedgehog ^>= 1.0 || ^>= 1.1
, hedgehog ^>= 1.0 || ^>= 1.1 || ^>= 1.2 || ^>= 1.3 || ^>= 1.4
, mmorph
, network-ip
, rel8
Expand Down
4 changes: 3 additions & 1 deletion src/Rel8/Type.hs
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,13 @@ where
-- aeson
import Data.Aeson ( Value )
import qualified Data.Aeson as Aeson
import qualified Data.Aeson.Parser as Aeson

-- attoparsec
import qualified Data.Attoparsec.ByteString.Char8 as A

-- attoparsec-aeson
import qualified Data.Aeson.Parser as Aeson

-- base
import Control.Applicative ((<|>))
import Data.Int ( Int16, Int32, Int64 )
Expand Down

0 comments on commit cb7b0fa

Please sign in to comment.