Skip to content
Snippets Groups Projects
Commit be514bb4 authored by Cheng Shao's avatar Cheng Shao Committed by Marge Bot
Browse files

hadrian: fix hadrian building with ghc-9.10.1

parent 2c0f8ddb
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@
set -Eeuo pipefail
# Configuration:
HACKAGE_INDEX_STATE="2023-10-05T11:38:51Z"
HACKAGE_INDEX_STATE="2024-05-13T15:04:38Z"
MIN_HAPPY_VERSION="1.20"
MIN_ALEX_VERSION="3.2.6"
......
......@@ -4,7 +4,11 @@ packages: ./
-- This essentially freezes the build plan for hadrian
-- It would be wise to keep this up to date with the state set in ci.sh
index-state: 2023-10-05T11:38:51Z
index-state: 2024-05-13T15:04:38Z
-- unordered-containers-0.2.20-r1 requires template-haskell < 2.22
-- ghc-9.10 has template-haskell-2.22.0.0
allow-newer: unordered-containers:template-haskell
-- N.B. Compile with -O0 since this is not a performance-critical executable
-- and the Cabal takes nearly twice as long to build with -O1. See #16817.
......
......@@ -155,7 +155,7 @@ executable hadrian
build-depends: Cabal >= 3.10 && < 3.11
, base >= 4.11 && < 5
, bytestring >= 0.10 && < 0.13
, containers >= 0.5 && < 0.7
, containers >= 0.5 && < 0.8
, directory >= 1.3.1.0 && < 1.4
, extra >= 1.4.7
, filepath
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment