diff options
author | simon.hengel <simon.hengel@wiktory.org> | 2010-03-15 20:52:42 +0000 |
---|---|---|
committer | simon.hengel <simon.hengel@wiktory.org> | 2010-03-15 20:52:42 +0000 |
commit | c6ed3d0ac30e32dab29cb4b73b7c03f94dc56404 (patch) | |
tree | c6a5e86090168babc23ef7e536ba5bac3b6d39d7 /haddock.cabal | |
parent | fa06576c8fdd5e5ae109929aadb8f4cafddf1198 (diff) |
Add missing dependencies for 'library' in haddock.cabal
Diffstat (limited to 'haddock.cabal')
-rw-r--r-- | haddock.cabal | 42 |
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 |