about summary refs log tree commit diff
path: root/pkgs/applications/editors
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
parentf244c4fe5e3f09edd6f5cd8bb34f214f235e9b03 (diff)
downloadnixlib-66a1e977195fdd3b97b2e4c90715e7fcf9b768b0.tar
nixlib-66a1e977195fdd3b97b2e4c90715e7fcf9b768b0.tar.gz
nixlib-66a1e977195fdd3b97b2e4c90715e7fcf9b768b0.tar.bz2
nixlib-66a1e977195fdd3b97b2e4c90715e7fcf9b768b0.tar.lz
nixlib-66a1e977195fdd3b97b2e4c90715e7fcf9b768b0.tar.xz
nixlib-66a1e977195fdd3b97b2e4c90715e7fcf9b768b0.tar.zst
nixlib-66a1e977195fdd3b97b2e4c90715e7fcf9b768b0.zip
neovim-unwrapped: don't fix cmake
Pollutes git status
Diffstat (limited to 'pkgs/applications/editors')
-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"