From 2570e429aae9c360ec647d9d49deae3825b1c9d3 Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Wed, 12 Feb 2025 10:56:07 -0600 Subject: [PATCH] neovim-utils: format --- pkgs/applications/editors/neovim/utils.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/applications/editors/neovim/utils.nix b/pkgs/applications/editors/neovim/utils.nix index bb0239c73ec0..69aa638d05a0 100644 --- a/pkgs/applications/editors/neovim/utils.nix +++ b/pkgs/applications/editors/neovim/utils.nix @@ -171,7 +171,7 @@ let withPython3 ? true, withNodeJs ? false, withRuby ? true, - # perl is problematic https://github.com/NixOS/nixpkgs/issues/132368 + # Perl is problematic https://github.com/NixOS/nixpkgs/issues/132368 withPerl ? false, # so that we can pass the full neovim config while ignoring it @@ -272,7 +272,7 @@ let )); /* - Fork of vimUtils.packDir that additionnally generates a propagated-build-inputs-file that + Fork of vimUtils.packDir that additionally generates a propagated-build-inputs-file that can be used by the lua hooks to generate a proper LUA_PATH Generates a packpath folder as expected by vim @@ -286,14 +286,14 @@ let rawPackDir = vimUtils.packDir packages; in - rawPackDir.override ({ + rawPackDir.override { postBuild = '' mkdir $out/nix-support for i in $(find -L $out -name propagated-build-inputs ); do cat "$i" >> $out/nix-support/propagated-build-inputs done ''; - }); + }; in {