mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-22 20:14:37 +00:00
ligo: unbreak on aarch64-linux
This commit is contained in:
parent
413a052d9d
commit
d6796b28ef
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user