switch to GHC2024
This commit is contained in:
parent
5031058bde
commit
d06f749b8c
5 changed files with 8 additions and 24 deletions
|
@ -1,4 +1,4 @@
|
|||
{-# LANGUAGE TemplateHaskell #-}
|
||||
{-# LANGUAGE PatternSynonyms, TemplateHaskell #-}
|
||||
module BuilderQQ
|
||||
(b,
|
||||
Builder, toStrictText, toLazyText, fromText, fromString, fromChar,
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{-# LANGUAGE CPP, ImplicitParams, TypeApplications #-}
|
||||
{-# LANGUAGE CPP, ImplicitParams #-}
|
||||
module Main (main) where
|
||||
|
||||
import Control.Monad
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
{-# OPTIONS_GHC -Wno-orphans #-}
|
||||
{-# LANGUAGE MultiParamTypeClasses, ScopedTypeVariables, TypeApplications #-}
|
||||
module Records (HasField (..)) where
|
||||
|
||||
import GHC.Records
|
||||
|
|
|
@ -252,7 +252,8 @@ makeButtonBar title images =
|
|||
| otherwise ->
|
||||
makeNav "cat" $ map (uncurry makeCat) cats
|
||||
where
|
||||
makeNav (cls :: Text) inner = [b|@0
|
||||
makeNav :: CanBuild b => Text -> b -> Builder
|
||||
makeNav cls inner = [b|@0
|
||||
<nav id=alts class=$cls aria-label="alternate versions">
|
||||
$2.inner
|
||||
$2.skipAll
|
||||
|
|
|
@ -26,39 +26,23 @@ executable make-pages
|
|||
RSS,
|
||||
ListTags,
|
||||
Options
|
||||
default-language: Haskell2010
|
||||
default-language: GHC2024
|
||||
default-extensions:
|
||||
BlockArguments,
|
||||
ConstraintKinds,
|
||||
DataKinds,
|
||||
DeriveAnyClass,
|
||||
DeriveTraversable,
|
||||
DerivingStrategies,
|
||||
DerivingVia,
|
||||
DuplicateRecordFields,
|
||||
FlexibleContexts,
|
||||
FlexibleInstances,
|
||||
GeneralizedNewtypeDeriving,
|
||||
LambdaCase,
|
||||
NamedFieldPuns,
|
||||
OverloadedLabels,
|
||||
OverloadedLists,
|
||||
OverloadedStrings,
|
||||
PatternSynonyms,
|
||||
QuasiQuotes,
|
||||
RankNTypes,
|
||||
ScopedTypeVariables,
|
||||
StandaloneDeriving,
|
||||
TupleSections,
|
||||
TypeSynonymInstances,
|
||||
ViewPatterns
|
||||
other-extensions:
|
||||
PatternSynonyms,
|
||||
CPP,
|
||||
ImplicitParams,
|
||||
MultiParamTypeClasses,
|
||||
ScopedTypeVariables,
|
||||
TemplateHaskell,
|
||||
TypeApplications
|
||||
TemplateHaskell
|
||||
build-depends:
|
||||
base >= 4.16.4 && < 4.21,
|
||||
bytestring >= 0.11.3.1 && < 0.14,
|
||||
|
|
Loading…
Reference in a new issue