aboutsummaryrefslogtreecommitdiffhomepage
path: root/Setup.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Setup.hs')
-rw-r--r--Setup.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Setup.hs b/Setup.hs
index c67c506..7b0e237 100644
--- a/Setup.hs
+++ b/Setup.hs
@@ -3,9 +3,10 @@ import Distribution.Simple.Setup
3import Distribution.Simple.Haddock 3import Distribution.Simple.Haddock
4main = do 4main = do
5 defaultMainWithHooks simpleUserHooks{ 5 defaultMainWithHooks simpleUserHooks{
6 haddockHook = \p l h f -> haddockHook simpleUserHooks p l h f{ 6 haddockHook = \p l h flags -> haddockHook simpleUserHooks p l h flags{
7 haddockHoogle = Flag True, 7 haddockHoogle = Flag True,
8 haddockHtml = Flag True, 8 haddockHtml = Flag True,
9 haddockProgramArgs = [("-q",["aliased"])], -- does not seam to do anything
9 haddockExecutables = Flag True, 10 haddockExecutables = Flag True,
10 haddockHscolour = Flag True 11 haddockHscolour = Flag True
11 } 12 }