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

The `include` was added in e038625b87
This commit is contained in:
Daniel Kempkens 2022-05-02 12:17:38 +02:00 committed by GitHub
parent 327a6d885c
commit 40864126d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -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