diff options
author | Matthieu Coudron <mcoudron@hotmail.com> | 2020-12-30 22:12:01 +0100 |
---|---|---|
committer | Matthieu Coudron <mcoudron@hotmail.com> | 2020-12-30 23:32:40 +0100 |
commit | 61c9d2a213bf4259dfa449c00d93907480accab0 (patch) | |
tree | ee33a2fb6b558b00393b2b14890e948cc00c8854 | |
parent | fb90b6ec9803fdbd603b1d5f1685583218c18909 (diff) | |
download | rneovim-61c9d2a213bf4259dfa449c00d93907480accab0.tar.gz rneovim-61c9d2a213bf4259dfa449c00d93907480accab0.tar.bz2 rneovim-61c9d2a213bf4259dfa449c00d93907480accab0.zip |
fix(flake): enable make functionaltest
otherwise busted is not provided/found and functionaltests are disabled.
-rw-r--r-- | contrib/flake.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/flake.nix b/contrib/flake.nix index a75e584075..86e4b37cfa 100644 --- a/contrib/flake.nix +++ b/contrib/flake.nix @@ -44,7 +44,7 @@ pythonEnv = legacyPkgs.python3; luacheck = legacyPkgs.luaPackages.luacheck; in - neovim-debug.overrideAttrs(oa: { + (neovim-debug.override({doCheck = true;})).overrideAttrs(oa: { cmakeFlags = oa.cmakeFlags ++ [ "-DLUACHECK_PRG=${luacheck}/bin/luacheck" "-DMIN_LOG_LEVEL=0" |