diff --git a/pkgs/development/compilers/ligo/default.nix b/pkgs/development/compilers/ligo/default.nix index 74819dd9446f..8a76de022283 100644 --- a/pkgs/development/compilers/ligo/default.nix +++ b/pkgs/development/compilers/ligo/default.nix @@ -131,7 +131,6 @@ ocamlPackages.buildDunePackage rec { mainProgram = "ligo"; license = licenses.mit; platforms = ocamlPackages.ocaml.meta.platforms; - broken = stdenv.isLinux && stdenv.isAarch64; maintainers = with maintainers; [ ulrikstrid ]; }; } diff --git a/pkgs/development/ocaml-modules/ctypes_stubs_js/default.nix b/pkgs/development/ocaml-modules/ctypes_stubs_js/default.nix index 84565e8007e0..f0d5e04a4a99 100644 --- a/pkgs/development/ocaml-modules/ctypes_stubs_js/default.nix +++ b/pkgs/development/ocaml-modules/ctypes_stubs_js/default.nix @@ -2,7 +2,7 @@ lib, fetchFromGitLab, buildDunePackage , integers_stubs_js, ctypes, ppx_expect , js_of_ocaml-compiler -, nodejs +, nodejs, stdenv }: buildDunePackage rec { @@ -28,7 +28,7 @@ buildDunePackage rec { ctypes ppx_expect ]; - doCheck = true; + doCheck = !(stdenv.isLinux && stdenv.isAarch64); meta = { description = "Js_of_ocaml Javascript stubs for the OCaml ctypes library";