Skip to content

Loosen dependency bounds to build using recent Hackage package lists #530

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 6, 2025
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
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,21 @@ To build the project:

```bash
stack build
# alternatively: cabal build
```

Once the project has built (which can take a while due to the dependencies for Hakyll), generate the site with:

```bash
stack exec -- site build
# alternatively: cabal run -- site build
```

and for development use:

```bash
stack run -- site watch
# alternatively: cabal run -- site watch
```

The site will be build in the `_site` directory, and you can open the files in your browser of choice. Due to a Hakyll issue, some sponsor logos will not show up correctly. This is expected behavior, and should be fine for the deployed site.
Expand Down
4 changes: 2 additions & 2 deletions haskell-foundation.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ cabal-version: 2.0
executable site
main-is: site.hs
build-depends: base == 4.*
, hakyll ^>= 4.14 || ^>= 4.15
, hakyll ^>= 4.14 || ^>= 4.15 || ^>= 4.16
, monadlist
, pandoc >=2.11 && <2.20
, pandoc >=2.11 && <3.8
, filepath ^>= 1.4
, text
ghc-options: -threaded
Expand Down