luajit_2_0: make it unsupported on all aarch64 platform variants

This commit is contained in:
Luka Blaskovic 2021-08-26 10:55:08 +00:00
parent 737e7314bc
commit 13a1ac5421

View File

@ -6,7 +6,7 @@ callPackage ./default.nix {
isStable = true;
sha256 = "0q187vn6bspn9i33hrvfy59mh83nd8jjmik5qkkkc3vls13jxr6z";
extraMeta = { # this isn't precise but it at least stops the useless Hydra build
platforms = with lib; filter (p: p != "aarch64-linux")
platforms = with lib; filter (p: !hasPrefix "aarch64-" p)
(platforms.linux ++ platforms.darwin);
};
}