about summary refs log tree commit diff
path: root/pkgs/development/interpreters/luajit
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2017-07-07 18:23:43 +0200
committerVladimír Čunát <vcunat@gmail.com>2017-07-07 18:25:17 +0200
commite08e354e0405ffec2159331282cff68be30dd515 (patch)
treeaa143ad208908f950cec0347002f5d3718ef43c0 /pkgs/development/interpreters/luajit
parent50430cb97b227ebd8336835dc1334dd63aa9a46a (diff)
downloadnixlib-e08e354e0405ffec2159331282cff68be30dd515.tar
nixlib-e08e354e0405ffec2159331282cff68be30dd515.tar.gz
nixlib-e08e354e0405ffec2159331282cff68be30dd515.tar.bz2
nixlib-e08e354e0405ffec2159331282cff68be30dd515.tar.lz
nixlib-e08e354e0405ffec2159331282cff68be30dd515.tar.xz
nixlib-e08e354e0405ffec2159331282cff68be30dd515.tar.zst
nixlib-e08e354e0405ffec2159331282cff68be30dd515.zip
luajit: revert to 2.1 on aarch64 for now
https://nix-cache.s3.amazonaws.com/log/irncmyl5d6h21jzg5rm10q8s2sxqirmv-luajit-2.0.5.drv
It's hard to debug for me, without an aarch64 machine.
Diffstat (limited to 'pkgs/development/interpreters/luajit')
-rw-r--r--pkgs/development/interpreters/luajit/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/interpreters/luajit/default.nix b/pkgs/development/interpreters/luajit/default.nix
index 59ddfde08aea..a754e2c4347b 100644
--- a/pkgs/development/interpreters/luajit/default.nix
+++ b/pkgs/development/interpreters/luajit/default.nix
@@ -4,7 +4,8 @@ rec {
   luajit =
     # Compatibility problems with lightuserdata pointers; see:
     # https://github.com/LuaJIT/LuaJIT/blob/v2.1/doc/status.html#L101
-    if hostPlatform.is64bit && (hostPlatform.isArm || hostPlatform.isSunOS)
+    if hostPlatform.is64bit && (/*hostPlatform.isArm ||*/ hostPlatform.isSunOS)
+        # FIXME: fix the aarch64 build
       then luajit_2_0
       else luajit_2_1;