aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--haddock.cabal42
1 files changed, 40 insertions, 2 deletions
diff --git a/haddock.cabal b/haddock.cabal
index f926e43f..d09c0fa1 100644
--- a/haddock.cabal
+++ b/haddock.cabal
@@ -1,5 +1,5 @@
name: haddock
-version: 2.7.0
+version: 2.6.0
cabal-version: >= 1.6
license: BSD3
build-type: Simple
@@ -124,19 +124,57 @@ executable haddock
Haddock.Convert
library
+ build-depends:
+ base >= 4.0.0.0 && < 4.3.0.0,
+ filepath,
+ directory,
+ pretty,
+ containers,
+ array,
+ Cabal >= 1.5,
+ ghc >= 6.12 && < 6.14,
+ ghc-paths
+
+ if flag(test)
+ cpp-options: -DTEST
+ build-depends: QuickCheck >= 2.1 && < 3
+
hs-source-dirs: src
extensions: CPP, PatternGuards, DeriveDataTypeable,
ScopedTypeVariables, MagicHash
+ ghc-options: -funbox-strict-fields -O2 -Wall
+
exposed-modules:
Documentation.Haddock
other-modules:
+ Haddock.Interface
+ Haddock.Interface.Rename
+ Haddock.Interface.Create
+ Haddock.Interface.ExtractFnArgDocs
+ Haddock.Interface.AttachInstances
+ Haddock.Interface.Rn
+ Haddock.Interface.LexParseRn
+ Haddock.Interface.ParseModuleHeader
Haddock.Lex
Haddock.Parse
+ Haddock.Utils.BlockTable
+ Haddock.Utils.Html
+ Haddock.Utils
+ Haddock.Backends.Html
+ Haddock.Backends.HaddockDB
+ Haddock.Backends.DevHelp
+ Haddock.Backends.HH
+ Haddock.Backends.HH2
+ Haddock.Backends.Hoogle
+ Haddock.ModuleTree
Haddock.Types
+ Haddock.Doc
+ Haddock.Version
Haddock.InterfaceFile
- Haddock.Utils
+ Haddock.Options
Haddock.GhcUtils
+ Haddock.Convert
if flag(in-ghc-tree)
buildable: False