aboutsummaryrefslogtreecommitdiff
path: root/app/Indexer.hs
diff options
context:
space:
mode:
Diffstat (limited to 'app/Indexer.hs')
-rw-r--r--app/Indexer.hs5
1 files changed, 4 insertions, 1 deletions
diff --git a/app/Indexer.hs b/app/Indexer.hs
index c91cb70..ee6a330 100644
--- a/app/Indexer.hs
+++ b/app/Indexer.hs
@@ -73,7 +73,10 @@ data Compression
| NoCompression
deriving (Show, Eq)
-#if MIN_VERSION_GLASGOW_HASKELL(8,4,4,0)
+#if MIN_VERSION_GLASGOW_HASKELL(8,6,3,0)
+ghcVersion :: Version
+ghcVersion = Version {versionBranch = [8, 6, 3, 0], versionTags = []}
+#elif MIN_VERSION_GLASGOW_HASKELL(8,4,4,0)
ghcVersion :: Version
ghcVersion = Version {versionBranch = [8, 4, 4, 0], versionTags = []}
#elif MIN_VERSION_GLASGOW_HASKELL(8,4,3,0)