diff options
author | Daniel Kempkens <daniel@kempkens.io> | 2022-05-02 12:17:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-02 03:17:38 -0700 |
commit | 40864126d58eb82911a3ba89a557aaa90ed51312 (patch) | |
tree | 20fdb370155fcec3bc6fb498e6ae8c2d147f0e32 | |
parent | 327a6d885c1f209f232a75670fc6b4613a3633e3 (diff) | |
download | rneovim-40864126d58eb82911a3ba89a557aaa90ed51312.tar.gz rneovim-40864126d58eb82911a3ba89a557aaa90ed51312.tar.bz2 rneovim-40864126d58eb82911a3ba89a557aaa90ed51312.zip |
fix(mac): add CoreServices to flake.nix #18358
The `include` was added in e038625b87dda2389d004017bd2dcf2b65bc40f6
-rw-r--r-- | contrib/flake.nix | 4 |
1 files changed, 4 insertions, 0 deletions
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 |