vimPlugins.tup: move to non-generated

Looks like it was missed in `overrides.nix` when it should be in
non-generated.

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>

+21 -19
+21
pkgs/applications/editors/vim/plugins/non-generated/tup/default.nix
··· 1 + { 2 + lib, 3 + vimUtils, 4 + tup, 5 + }: 6 + let 7 + # Based on the comment at the top of https://github.com/gittup/tup/blob/master/contrib/syntax/tup.vim 8 + ftdetect = builtins.toFile "tup.vim" '' 9 + au BufNewFile,BufRead Tupfile,*.tup setf tup 10 + ''; 11 + in 12 + vimUtils.buildVimPlugin { 13 + inherit (tup) pname version src; 14 + preInstall = '' 15 + mkdir -p vim-plugin/syntax vim-plugin/ftdetect 16 + cp contrib/syntax/tup.vim vim-plugin/syntax/tup.vim 17 + cp "${ftdetect}" vim-plugin/ftdetect/tup.vim 18 + cd vim-plugin 19 + ''; 20 + meta.maintainers = with lib.maintainers; [ enderger ]; 21 + }
-19
pkgs/applications/editors/vim/plugins/overrides.nix
··· 47 47 stylish-haskell, 48 48 tabnine, 49 49 tmux, 50 - tup, 51 50 typescript, 52 51 typescript-language-server, 53 52 vim, ··· 3586 3585 tssorter-nvim = super.tssorter-nvim.overrideAttrs { 3587 3586 dependencies = [ self.nvim-treesitter ]; 3588 3587 }; 3589 - 3590 - tup = 3591 - let 3592 - # Based on the comment at the top of https://github.com/gittup/tup/blob/master/contrib/syntax/tup.vim 3593 - ftdetect = builtins.toFile "tup.vim" '' 3594 - au BufNewFile,BufRead Tupfile,*.tup setf tup 3595 - ''; 3596 - in 3597 - buildVimPlugin { 3598 - inherit (tup) pname version src; 3599 - preInstall = '' 3600 - mkdir -p vim-plugin/syntax vim-plugin/ftdetect 3601 - cp contrib/syntax/tup.vim vim-plugin/syntax/tup.vim 3602 - cp "${ftdetect}" vim-plugin/ftdetect/tup.vim 3603 - cd vim-plugin 3604 - ''; 3605 - meta.maintainers = with lib.maintainers; [ enderger ]; 3606 - }; 3607 3588 3608 3589 typescript-nvim = super.typescript-nvim.overrideAttrs { 3609 3590 checkInputs = [