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 45b7df8 commit dc365a2Copy full SHA for dc365a2
test/shell-for-setup-deps/default.nix
@@ -27,7 +27,9 @@ in recurseIntoAttrs ({
27
meta.disabled = stdenv.buildPlatform != stdenv.hostPlatform
28
|| compiler-nix-name == "ghc901" || compiler-nix-name == "ghc902" ||
29
# TH breaks for ghc 9.4.3 cross compile for macOS with this test
30
- (stdenv.hostPlatform.isDarwin && __elem compiler-nix-name ["ghc941" "ghc942" "ghc943" "ghc944"]);
+ (stdenv.hostPlatform.isDarwin && __elem compiler-nix-name ["ghc941" "ghc942" "ghc943" "ghc944"]) ||
31
+ # Segfaults in ghc-pkg on aarc64-linux for GHC 8.10
32
+ (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64 && compiler-nix-name == "ghc8107");
33
ifdInputs = {
34
inherit (project) plan-nix;
35
};
0 commit comments