diff options
author | Simon Hengel <sol@typeful.net> | 2014-08-22 15:18:06 +0800 |
---|---|---|
committer | Simon Hengel <sol@typeful.net> | 2014-08-22 15:18:06 +0800 |
commit | 259b2a9d821716a4e0ad5a1ea595576bac077daa (patch) | |
tree | 8d42dbe8a79f7a9cee2a4b0c7d061f274f8de3aa /haddock.cabal | |
parent | 4dc4d3cfa18d795f9b2bb7c5a3ac60ce29d8f279 (diff) |
Add deprecated compatibility module
Diffstat (limited to 'haddock.cabal')
-rw-r--r-- | haddock.cabal | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/haddock.cabal b/haddock.cabal index 9939a352..5932b122 100644 --- a/haddock.cabal +++ b/haddock.cabal @@ -40,6 +40,21 @@ flag in-ghc-tree default: False manual: True +-- This package re-exports the haddock-api library for compatibility. +-- The library section will be removed in version 2.16.0. +library + exposed: False + default-language: Haskell2010 + hs-source-dirs: compat + ghc-options: -Wall + build-depends: + -- NOTE: Don't bump base dependency! Remove library section instead! + base >= 4.3 && < 4.8 + , haddock-api + exposed-modules: Documentation.Haddock + if flag(in-ghc-tree) + buildable: False + executable haddock default-language: Haskell2010 main-is: Main.hs |