texlive: disable luajit on RISC-V (#211999)

Support is not yet there
This commit is contained in:
Zhaofeng Li
2023-01-21 17:34:32 -05:00
committed by GitHub
parent 66ed9c811e
commit 786f0f2fcb
+2 -1
View File
@@ -53,7 +53,8 @@ let
'';
};
withLuaJIT = !(stdenv.hostPlatform.isPower && stdenv.hostPlatform.is64bit);
# RISC-V: https://github.com/LuaJIT/LuaJIT/issues/628
withLuaJIT = !(stdenv.hostPlatform.isPower && stdenv.hostPlatform.is64bit) && !stdenv.hostPlatform.isRiscV;
in rec { # un-indented
inherit (common) cleanBrokenLinks;