diff options
author | Daniel Gröber <dxld@darkboxed.org> | 2017-01-16 17:37:18 +0100 |
---|---|---|
committer | Daniel Gröber <dxld@darkboxed.org> | 2017-01-16 17:49:25 +0100 |
commit | af63be92e781ff189e07ff0d6774c74493506b27 (patch) | |
tree | 30087571ead387fea82337713eaac2f67a6ac3b7 | |
parent | fc8eefa45cc2c667c9e0f3c6e7429f0ff099cfeb (diff) |
Tighten Cabal bounds
-rw-r--r-- | cabal-helper.cabal | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/cabal-helper.cabal b/cabal-helper.cabal index 4570d48..b642a40 100644 --- a/cabal-helper.cabal +++ b/cabal-helper.cabal @@ -42,6 +42,16 @@ source-repository head type: git location: https://github.com/DanielG/cabal-helper.git +Custom-Setup + Setup-Depends: base + , Cabal >= 1.14 && < 1.25 + , containers + , filepath + , directory + , process + , template-haskell + , transformers + library exposed-modules: Distribution.Helper other-modules: Paths_cabal_helper @@ -50,7 +60,7 @@ library default-language: Haskell2010 ghc-options: -Wall build-depends: base < 5 && >= 4.5 - , Cabal < 1.26 && >= 1.14 + , Cabal < 1.25 && >= 1.14 , directory < 1.4 && >= 1.1.0.2 , filepath < 1.5 && >= 1.3.0.0 , transformers < 0.6 && >= 0.3.0.0 @@ -73,7 +83,7 @@ executable cabal-helper-wrapper ghc-options: -Wall x-internal: True build-depends: base < 5 && >= 4.5 - , Cabal < 1.26 && >= 1.14 + , Cabal < 1.25 && >= 1.14 , bytestring < 0.11 && >= 0.9.2.1 , directory < 1.4 && >= 1.1.0.2 , filepath < 1.5 && >= 1.3.0.0 |