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 ac4faa9 commit a32706cCopy full SHA for a32706c
test/gi-gtk/default.nix
@@ -23,7 +23,9 @@ in recurseIntoAttrs rec {
23
|| stdenv.hostPlatform.isMusl
24
# Older versions of GHC fail for aarch64 with
25
# error: incompatible pointer to integer conversion assigning to 'ffi_arg' (aka 'unsigned long') from 'HsPtr' (aka 'void *') [-Wint-conversion]
26
- || builtins.elem compiler-nix-name ["ghc8107" "ghc902" "ghc928" "ghc948"] && stdenv.hostPlatform.isAarch64;
+ || builtins.elem compiler-nix-name ["ghc8107" "ghc902" "ghc928" "ghc948"] && stdenv.hostPlatform.isAarch64
27
+ # Cross compilation to aarch64 is also broken
28
+ || stdenv.hostPlatform.isAarch64 && !stdenv.buildPlatform.isAarch64;
29
30
ifdInputs = {
31
inherit (project) plan-nix;
0 commit comments