Skip to content

Commit d1cabb5

Browse files
committed
Added support for GHC 9.8
1 parent 62efd5f commit d1cabb5

File tree

3 files changed

+30
-2
lines changed

3 files changed

+30
-2
lines changed

.github/workflows/main.yml

+3
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ jobs:
3737
- os:
3838
runner: "ubuntu-latest"
3939
stack-yaml: "stack.ghc-9.4.yaml"
40+
- os:
41+
runner: "ubuntu-latest"
42+
stack-yaml: "stack.ghc-9.8.yaml"
4043
fail-fast: false
4144
name: ${{ matrix.os.runner }} - ${{ matrix.stack-yaml }}
4245
runs-on: ${{ matrix.os.runner }}

cabal.project

+5-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,11 @@ packages:
55
./dhall-docs
66
./dhall-json
77
./dhall-lsp-server
8-
./dhall-nix
9-
./dhall-nixpkgs
108
./dhall-openapi
119
./dhall-toml
1210
./dhall-yaml
11+
12+
if impl(ghc < 9.8)
13+
packages:
14+
./dhall-nix
15+
./dhall-nixpkgs

stack.ghc-9.8.yaml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
resolver: lts-23.6
2+
packages:
3+
- dhall
4+
- dhall-bash
5+
- dhall-csv
6+
- dhall-docs
7+
- dhall-json
8+
- dhall-lsp-server
9+
# - dhall-nix
10+
- dhall-openapi
11+
- dhall-toml
12+
- dhall-yaml
13+
extra-deps:
14+
- special-values-0.1.0.0@sha256:ea855ec644acac84d3a4c9aadae9ba70a11d1d48d00940805dbb81cc95672bbd,1416
15+
nix:
16+
packages:
17+
- ncurses
18+
- zlib
19+
flags:
20+
# https://github.com/RyanGlScott/mintty/issues/4
21+
mintty:
22+
Win32-2-13-1: false

0 commit comments

Comments
 (0)