From 61c9d2a213bf4259dfa449c00d93907480accab0 Mon Sep 17 00:00:00 2001 From: Matthieu Coudron Date: Wed, 30 Dec 2020 22:12:01 +0100 Subject: [PATCH] fix(flake): enable make functionaltest otherwise busted is not provided/found and functionaltests are disabled. --- contrib/flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"