From 40864126d58eb82911a3ba89a557aaa90ed51312 Mon Sep 17 00:00:00 2001 From: Daniel Kempkens Date: Mon, 2 May 2022 12:17:38 +0200 Subject: [PATCH] fix(mac): add CoreServices to flake.nix #18358 The `include` was added in e038625b87dda2389d004017bd2dcf2b65bc40f6 --- contrib/flake.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/contrib/flake.nix b/contrib/flake.nix index 848c52d208..a1072674ba 100644 --- 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