Dont haddock ghcjs in either version

This commit is contained in:
Will Fancher
2018-05-16 03:09:22 -04:00
parent 64df9b6b89
commit d86edd5161
3 changed files with 1 additions and 8 deletions

View File

@@ -1,6 +0,0 @@
{ haskellLib }:
let inherit (haskellLib) dontHaddock;
in self: super: {
ghcjs = dontHaddock super.ghcjs;
}

View File

@@ -3,6 +3,6 @@
let inherit (haskellLib) addBuildTools appendConfigureFlag dontHaddock doJailbreak;
in self: super: {
ghc-api-ghcjs = addBuildTools super.ghc-api-ghcjs [alex happy];
ghcjs = appendConfigureFlag (doJailbreak super.ghcjs) "-fno-wrapper-install";
ghcjs = dontHaddock (appendConfigureFlag (doJailbreak super.ghcjs) "-fno-wrapper-install");
haddock-library-ghcjs = dontHaddock super.haddock-library-ghcjs;
}