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 76c82ae commit 2d73267Copy full SHA for 2d73267
test/cabal-simple/default.nix
@@ -35,7 +35,7 @@ in recurseIntoAttrs {
35
cabal = { cabalProjectLocal = builtins.readFile ../cabal.project.local; };
36
hoogle = { cabalProjectLocal = builtins.readFile ../cabal.project.local; };
37
};
38
- withHoogle = true;
+ withHoogle = !stdenv.hostPlatform.isStatic;
39
}).overrideAttrs (_: _: {
40
meta = rec {
41
platforms = lib.platforms.all;
test/sublib-docs/default.nix
@@ -14,7 +14,7 @@ let
14
15
in recurseIntoAttrs {
16
# Haddock is not included with cross compilers currently
17
- meta.disabled = haskellLib.isCrossHost;
+ meta.disabled = haskellLib.isCrossHost || stdenv.hostPlatform.isStatic;
18
ifdInputs = {
19
inherit (project) plan-nix;
20
0 commit comments