c93aff17d5
This makes the hadrian expressions much simpler as we no longer need to thread through extra arguments for special workarounds. common-hadrian.nix decides in one place which patches we need and directly applies them to the source used to build everything.
13 lines
578 B
Diff
13 lines
578 B
Diff
diff --git a/hadrian/src/Settings/Builders/Haddock.hs b/hadrian/src/Settings/Builders/Haddock.hs
|
|
index 902b2f85e2..429a441c3b 100644
|
|
--- a/hadrian/src/Settings/Builders/Haddock.hs
|
|
+++ b/hadrian/src/Settings/Builders/Haddock.hs
|
|
@@ -57,7 +57,6 @@ haddockBuilderArgs = mconcat
|
|
, arg $ "--odir=" ++ takeDirectory output
|
|
, arg $ "--dump-interface=" ++ output
|
|
, arg "--html"
|
|
- , arg "--hyperlinked-source"
|
|
, arg "--hoogle"
|
|
, arg "--quickjump"
|
|
, arg $ "--title=" ++ pkgName pkg ++ "-" ++ version
|