summaryrefslogtreecommitdiff
path: root/git-repair.cabal
diff options
context:
space:
mode:
authorJoey Hess <joeyh@joeyh.name>2020-05-04 15:52:37 -0400
committerJoey Hess <joeyh@joeyh.name>2020-05-04 15:52:37 -0400
commit31c7f57bfd07315e68cefe917bf29603c44c2d58 (patch)
tree93bb8b520fa16f44196076dad62f06320e53a352 /git-repair.cabal
parent62fe45c02f541d2246a0cdb52538e0af2a75a059 (diff)
downloadgit-repair-31c7f57bfd07315e68cefe917bf29603c44c2d58.tar.gz
changes required by cabal-version 1.10
Extensions got renamed. Default-Language is required. I had to put Haskell98 because there are subtle differences between 98 and 2010 and git-annex has always been built with the default, which was 98 when there was a default. I don't know how to establish that git-annex will behave the same under 2010.
Diffstat (limited to 'git-repair.cabal')
-rw-r--r--git-repair.cabal3
1 files changed, 2 insertions, 1 deletions
diff --git a/git-repair.cabal b/git-repair.cabal
index 1db6272..2ea10fa 100644
--- a/git-repair.cabal
+++ b/git-repair.cabal
@@ -39,7 +39,8 @@ source-repository head
Executable git-repair
Main-Is: git-repair.hs
GHC-Options: -threaded -Wall -fno-warn-tabs
- Extensions: LambdaCase
+ Default-Language: Haskell98
+ Default-Extensions: LambdaCase
Build-Depends: split, hslogger, directory, filepath, containers, mtl,
unix-compat (>= 0.5), bytestring, exceptions (>= 0.6), transformers,
base (>= 4.11.1.0 && < 5.0), IfElse, text, process, time, QuickCheck,