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 1402b84 commit 7f98399Copy full SHA for 7f98399
compiler/ghc/default.nix
@@ -141,9 +141,6 @@ let
141
CrossCompilePrefix = ${targetPrefix}
142
'' + lib.optionalString isCrossTarget ''
143
Stage1Only = ${if targetPlatform.system == hostPlatform.system then "NO" else "YES"}
144
- ''
145
- # GHC 9.0.1 fails to compile for musl unless HADDOC_DOCS = NO
146
- + lib.optionalString (isCrossTarget || (targetPlatform.isMusl && builtins.compareVersions ghc-version "9.0.1" >= 0)) ''
147
HADDOCK_DOCS = NO
148
BUILD_SPHINX_HTML = NO
149
BUILD_SPHINX_PDF = NO
@@ -474,7 +471,7 @@ stdenv.mkDerivation (rec {
474
471
dontAddExtraLibs = true;
475
472
476
473
nativeBuildInputs = [
477
- perl autoconf automake m4 python3 sphinx
+ perl autoconf automake m4 python3
478
ghc bootPkgs.alex bootPkgs.happy bootPkgs.hscolour
479
] ++ lib.optional (patches != []) autoreconfHook;
480
0 commit comments