We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent 50430cb commit e08e354Copy full SHA for e08e354
pkgs/development/interpreters/luajit/default.nix
@@ -4,7 +4,8 @@ rec {
4
luajit =
5
# Compatibility problems with lightuserdata pointers; see:
6
# https://github.com/LuaJIT/LuaJIT/blob/v2.1/doc/status.html#L101
7
- if hostPlatform.is64bit && (hostPlatform.isArm || hostPlatform.isSunOS)
+ if hostPlatform.is64bit && (/*hostPlatform.isArm ||*/ hostPlatform.isSunOS)
8
+ # FIXME: fix the aarch64 build
9
then luajit_2_0
10
else luajit_2_1;
11
0 commit comments