summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/editors/neovim
diff options
context:
space:
mode:
authorGabriel Ebner <gebner@gebner.org>2019-05-16 11:59:10 +0200
committerGabriel Ebner <gebner@gebner.org>2019-05-16 12:37:15 +0200
commitb8a6775227222b4c6b0c4394d4c47f523658fcb6 (patch)
treec522642ec304450b476cce1595ef9e5ef70edc13 /pkgs/applications/editors/neovim
parentab1ac905b43a1dc64a00cacd0ccf31a6d0bc572c (diff)
neovim: use lua on aarch64
Diffstat (limited to 'pkgs/applications/editors/neovim')
-rw-r--r--pkgs/applications/editors/neovim/default.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/applications/editors/neovim/default.nix b/pkgs/applications/editors/neovim/default.nix
index a53c499fe5c2..5d623cdfc6db 100644
--- a/pkgs/applications/editors/neovim/default.nix
+++ b/pkgs/applications/editors/neovim/default.nix
@@ -80,6 +80,7 @@ in
"-DGPERF_PRG=${gperf}/bin/gperf"
]
++ optional doCheck "-DBUSTED_PRG=${neovimLuaEnv}/bin/busted"
+ ++ optional (!lua.pkgs.isLuaJIT) "-DPREFER_LUA=ON"
;
# triggers on buffer overflow bug while running tests
@@ -122,8 +123,5 @@ in
license = with licenses; [ asl20 vim ];
maintainers = with maintainers; [ manveru garbas rvolosatovs ];
platforms = platforms.unix;
- # `lua: bad light userdata pointer`
- # https://nix-cache.s3.amazonaws.com/log/9ahcb52905d9d417zsskjpc331iailpq-neovim-unwrapped-0.2.2.drv
- broken = stdenv.isAarch64;
};
}