ligo: unbreak on aarch64-linux

This commit is contained in:
Weijia Wang 2024-09-11 18:40:06 +02:00 committed by Vincent Laporte
parent 413a052d9d
commit d6796b28ef
2 changed files with 2 additions and 3 deletions

View File

@ -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 ];
};
}

View File

@ -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";