Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -63,7 +63,11 @@ platformRustFlagsEnv = lib.optionalString pkgs.stdenv.isLinux "-Clink-arg=-Wl,--no-rosegment"; in pkgs.mkShell { - inputsFrom = [self.checks.${system}.helix]; + inputsFrom = [ + (self.checks.${system}.helix.override { + includeGrammarIf = _: false; + }) + ]; nativeBuildInputs = with pkgs; [ lld |