We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e77783 commit 20b8f90Copy full SHA for 20b8f90
builder/ghc-for-component-wrapper.nix
@@ -25,7 +25,8 @@ let
25
docDir = "$wrappedGhc/share/doc/ghc/html";
26
# For musl we can use haddock from the buildGHC
27
haddock = if stdenv.hostPlatform.isMusl
28
- then ghc.buildGHC or ghc
+ then ghc.buildGHC or ghc # `or ghc` is here because nixpkgs GHC does not have `buildGHC`
29
+ # TODO find a way to get suitable GHC and/or respect `ghc.hasHaddock`.
30
else ghc;
31
32
script = ''
0 commit comments