neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 40864126d58eb82911a3ba89a557aaa90ed51312
parent 327a6d885c1f209f232a75670fc6b4613a3633e3
Author: Daniel Kempkens <daniel@kempkens.io>
Date:   Mon,  2 May 2022 12:17:38 +0200

fix(mac): add CoreServices to flake.nix #18358

The `include` was added in e038625b87dda2389d004017bd2dcf2b65bc40f6
Diffstat:
Mcontrib/flake.nix | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/contrib/flake.nix b/contrib/flake.nix @@ -16,6 +16,10 @@ neovim = pkgs.neovim-unwrapped.overrideAttrs (oa: { version = "master"; src = ../.; + + buildInputs = oa.buildInputs ++ pkgs.lib.optionals pkgs.stdenv.isDarwin (with pkgs.darwin.apple_sdk.frameworks; [ + CoreServices + ]); }); # a development binary to help debug issues