]> git.immae.eu Git - github/fretlink/blazeT.git/blame - Setup.hs
Fix warning on simplifiable typeclass
[github/fretlink/blazeT.git] / Setup.hs
CommitLineData
675085c2
JG
1import Distribution.Simple
2import Distribution.Simple.Setup
3import Distribution.Simple.Haddock
4main = do
5 defaultMainWithHooks simpleUserHooks{
95eb4d6a 6 haddockHook = \p l h flags -> haddockHook simpleUserHooks p l h flags{
675085c2
JG
7 haddockHoogle = Flag True,
8 haddockHtml = Flag True,
95eb4d6a 9 haddockProgramArgs = [("-q",["aliased"])], -- does not seam to do anything
3db60b16 10 haddockExecutables = Flag True
675085c2
JG
11 }
12 }
13