luajit: add powerpc64le-linux to badPlatforms
This commit is contained in:
parent
755cd4bb65
commit
c031cc5bf1
1 changed files with 4 additions and 2 deletions
|
@ -127,8 +127,10 @@ stdenv.mkDerivation rec {
|
|||
homepage = "https://luajit.org/";
|
||||
license = licenses.mit;
|
||||
platforms = platforms.linux ++ platforms.darwin;
|
||||
# See https://github.com/LuaJIT/LuaJIT/issues/628
|
||||
badPlatforms = [ "riscv64-linux" "riscv64-linux" ];
|
||||
badPlatforms = [
|
||||
"riscv64-linux" "riscv64-linux" # See https://github.com/LuaJIT/LuaJIT/issues/628
|
||||
"powerpc64le-linux" # `#error "No support for PPC64"`
|
||||
];
|
||||
maintainers = with maintainers; [ thoughtpolice smironov vcunat lblasc ];
|
||||
} // extraMeta;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue