vimPlugins: remove unnecessary dependency (#366722)

authored by

Austin Horstman and committed by
GitHub
6399d483 94200398

-10
-2
pkgs/applications/editors/vim/plugins/default.nix
··· 5 5 lib, 6 6 vimUtils, 7 7 vim, 8 - darwin, 9 8 llvmPackages, 10 9 neovim-unwrapped, 11 10 neovimUtils, ··· 33 32 # If additional modifications to the build process are required, 34 33 # add to ./overrides.nix. 35 34 overrides = callPackage ./overrides.nix { 36 - inherit (darwin.apple_sdk.frameworks) Cocoa CoreFoundation CoreServices; 37 35 inherit buildVimPlugin; 38 36 inherit llvmPackages; 39 37 };
-8
pkgs/applications/editors/vim/plugins/overrides.nix
··· 17 17 rustPlatform, 18 18 # Misc dependencies 19 19 arrow-cpp, 20 - Cocoa, 21 20 coc-clangd, 22 21 coc-css, 23 22 coc-diagnostic, ··· 79 78 cmake, 80 79 icu, 81 80 ncurses, 82 - # LanguageClient-neovim dependencies 83 - CoreFoundation, 84 - CoreServices, 85 81 # nvim-treesitter dependencies 86 82 callPackage, 87 83 # Preview-nvim dependencies ··· 3088 3084 3089 3085 vim-addon-goto-thing-at-cursor = super.vim-addon-goto-thing-at-cursor.overrideAttrs { 3090 3086 dependencies = [ self.tlib_vim ]; 3091 - }; 3092 - 3093 - vim-addon-manager = super.vim-addon-manager.overrideAttrs { 3094 - buildInputs = lib.optional stdenv.hostPlatform.isDarwin Cocoa; 3095 3087 }; 3096 3088 3097 3089 vim-addon-mru = super.vim-addon-mru.overrideAttrs {