haskell-hoogle: adapt to GHC docs split
The docs were split at #16167 and broke google support. @peti fixed build, however hoogle still didn't see packages shipped with GHC. This patch fixes location of the libraries shipped with GHC.
This commit is contained in:
parent
099d3dc43b
commit
87aa864ff9
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ stdenv.mkDerivation {
|
|||
}
|
||||
|
||||
echo importing builtin packages
|
||||
for docdir in ${ghc}/${docLibGlob}/*; do
|
||||
for docdir in ${ghc.doc}/${docLibGlob}/*; do
|
||||
name="$(basename $docdir)"
|
||||
${opts isGhcjs ''docdir="$docdir/html"''}
|
||||
if [[ -d $docdir ]]; then
|
||||
|
|
Loading…
Reference in a new issue