Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion cabal.project
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
packages: .
constraints: ansi-wl-pprint < 1.0.0

source-repository-package
type: git
location: https://github.com/jfischoff/tmp-postgres
tag: 7f2467a6d6d5f6db7eed59919a6773fe006cf22b

allow-newer: base16:base, base16:deepseq, base16:text
allow-newer: *:base, *:template-haskell, *:ghc-prim
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
### Added

- Support GHC-9.12
94 changes: 73 additions & 21 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 = "ghc982";
compiler-nix-name = "ghc9121";

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

Expand Down
8 changes: 4 additions & 4 deletions rel8.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ library
build-depends:
aeson
, attoparsec
, base ^>= 4.16 || ^>= 4.17 || ^>= 4.18 || ^>= 4.19 || ^>= 4.20
, base >= 4.16 && < 4.22
, base16 >= 1.0
, base-compat ^>= 0.11 || ^>= 0.12 || ^>= 0.13 || ^>= 0.14
, base-compat >= 0.11 && < 0.15
, bifunctors
, bytestring
, case-insensitive
Expand Down Expand Up @@ -258,7 +258,7 @@ test-suite tests
, containers
, hasql
, hasql-transaction
, hedgehog ^>= 1.0 || ^>= 1.1 || ^>= 1.2 || ^>= 1.3 || ^>= 1.4 || ^>= 1.5
, hedgehog >= 1.0 && < 1.6
, mmorph
, iproute
, rel8
Expand All @@ -268,7 +268,7 @@ test-suite tests
, text
, these
, time
, tmp-postgres ^>=1.34.1.0
, tmp-postgres >=1.34 && <1.36
, transformers
, uuid
, vector
Expand Down