Skip to content

Commit 752eda9

Browse files
committed
Support GHC-9.12
1 parent 4b2e77d commit 752eda9

5 files changed

Lines changed: 88 additions & 27 deletions

File tree

cabal.project

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
11
packages: .
2-
constraints: ansi-wl-pprint < 1.0.0
2+
3+
source-repository-package
4+
type: git
5+
location: https://github.com/jfischoff/tmp-postgres
6+
tag: 7f2467a6d6d5f6db7eed59919a6773fe006cf22b
7+
38
allow-newer: base16:base, base16:deepseq, base16:text
9+
allow-newer: *:base, *:template-haskell, *:ghc-prim
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
### Added
2+
3+
- Support GHC-9.12

flake.lock

Lines changed: 73 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
};
2929

3030
rel8 = pkgs.haskell-nix.project {
31-
compiler-nix-name = "ghc982";
31+
compiler-nix-name = "ghc9121";
3232

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

rel8.cabal

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ library
2121
build-depends:
2222
aeson
2323
, attoparsec
24-
, base ^>= 4.16 || ^>= 4.17 || ^>= 4.18 || ^>= 4.19 || ^>= 4.20
24+
, base >= 4.16 && < 4.22
2525
, base16 >= 1.0
26-
, base-compat ^>= 0.11 || ^>= 0.12 || ^>= 0.13 || ^>= 0.14
26+
, base-compat >= 0.11 && < 0.15
2727
, bifunctors
2828
, bytestring
2929
, case-insensitive
@@ -258,7 +258,7 @@ test-suite tests
258258
, containers
259259
, hasql
260260
, hasql-transaction
261-
, hedgehog ^>= 1.0 || ^>= 1.1 || ^>= 1.2 || ^>= 1.3 || ^>= 1.4 || ^>= 1.5
261+
, hedgehog >= 1.0 && < 1.6
262262
, mmorph
263263
, iproute
264264
, rel8
@@ -268,7 +268,7 @@ test-suite tests
268268
, text
269269
, these
270270
, time
271-
, tmp-postgres ^>=1.34.1.0
271+
, tmp-postgres
272272
, transformers
273273
, uuid
274274
, vector

0 commit comments

Comments
 (0)