summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/editors/neovim
diff options
context:
space:
mode:
authorMatthieu Coudron <mattator@gmail.com>2019-05-14 16:24:14 +0900
committerMatthieu Coudron <coudron@iij.ad.jp>2019-05-31 17:07:09 +0900
commit66a1e977195fdd3b97b2e4c90715e7fcf9b768b0 (patch)
tree1e11f283ec536fce830b21cd4620b79c3c2d0213 /pkgs/applications/editors/neovim
parentf244c4fe5e3f09edd6f5cd8bb34f214f235e9b03 (diff)
neovim-unwrapped: don't fix cmake
Pollutes git status
Diffstat (limited to 'pkgs/applications/editors/neovim')
-rw-r--r--pkgs/applications/editors/neovim/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/applications/editors/neovim/default.nix b/pkgs/applications/editors/neovim/default.nix
index 5d623cdfc6db..7c13359c6dc5 100644
--- a/pkgs/applications/editors/neovim/default.nix
+++ b/pkgs/applications/editors/neovim/default.nix
@@ -37,6 +37,7 @@ in
./system_rplugin_manifest.patch
];
+ dontFixCmake = true;
enableParallelBuilding = true;
buildInputs = [
@@ -76,7 +77,7 @@ in
disallowedReferences = [ stdenv.cc ];
cmakeFlags = [
- "-DLUA_PRG=${neovimLuaEnv}/bin/lua"
+ "-DLUA_PRG=${neovimLuaEnv.interpreter}"
"-DGPERF_PRG=${gperf}/bin/gperf"
]
++ optional doCheck "-DBUSTED_PRG=${neovimLuaEnv}/bin/busted"