File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 14
14
packages = project . hsPkgs ;
15
15
16
16
in recurseIntoAttrs rec {
17
- meta . disabled = stdenv . hostPlatform . isGhcjs ;
17
+ meta . disabled = stdenv . hostPlatform . isGhcjs || stdenv . hostPlatform . isWasm ;
18
18
19
19
ifdInputs = {
20
20
inherit ( project ) plan-nix ;
Original file line number Diff line number Diff line change 14
14
packages = project . hsPkgs ;
15
15
16
16
in recurseIntoAttrs rec {
17
- meta . disabled = stdenv . hostPlatform . isGhcjs ;
17
+ meta . disabled = stdenv . hostPlatform . isGhcjs || stdenv . hostPlatform . isWasm ;
18
18
19
19
ifdInputs = {
20
20
inherit ( project ) plan-nix ;
Original file line number Diff line number Diff line change 16
16
packages = project . hsPkgs ;
17
17
18
18
in recurseIntoAttrs rec {
19
- meta . disabled = stdenv . hostPlatform . isGhcjs
19
+ meta . disabled = stdenv . hostPlatform . isGhcjs || stdenv . hostPlatform . isWasm
20
20
# Gtk cross compilation seems to be broken in nixpkgs
21
21
|| stdenv . hostPlatform . isWindows
22
22
# We can't make static libraries for Gtk
Original file line number Diff line number Diff line change 19
19
packages-ei = ( project true ) . hsPkgs ;
20
20
21
21
in recurseIntoAttrs {
22
- meta . disabled = stdenv . hostPlatform . isGhcjs
22
+ meta . disabled = stdenv . hostPlatform . isGhcjs || stdenv . hostPlatform . isWasm
23
23
# On aarch64 this test also breaks form musl builds (including cross compiles on x86_64-linux)
24
24
|| ( stdenv . hostPlatform . isAarch64 && stdenv . hostPlatform . isMusl )
25
25
# Failed to lookup symbol: __aarch64_swp8_acq_rel
You can’t perform that action at this time.
0 commit comments