vimPlugins.statix: 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>

+17 -15
+17
pkgs/applications/editors/vim/plugins/non-generated/statix/default.nix
···
··· 1 + { 2 + vimUtils, 3 + statix, 4 + }: 5 + vimUtils.buildVimPlugin rec { 6 + inherit (statix) pname src meta; 7 + version = "0.1.0"; 8 + postPatch = '' 9 + # check that version is up to date 10 + grep 'pname = "statix-vim"' -A 1 flake.nix \ 11 + | grep -F 'version = "${version}"' 12 + 13 + cd vim-plugin 14 + substituteInPlace ftplugin/nix.vim --replace-fail statix ${statix}/bin/statix 15 + substituteInPlace plugin/statix.vim --replace-fail statix ${statix}/bin/statix 16 + ''; 17 + }
-15
pkgs/applications/editors/vim/plugins/overrides.nix
··· 44 ripgrep, 45 sqlite, 46 sshfs, 47 - statix, 48 stylish-haskell, 49 tabnine, 50 taskwarrior2, ··· 3258 3259 startup-nvim = super.startup-nvim.overrideAttrs { 3260 dependencies = [ self.plenary-nvim ]; 3261 - }; 3262 - 3263 - statix = buildVimPlugin rec { 3264 - inherit (statix) pname src meta; 3265 - version = "0.1.0"; 3266 - postPatch = '' 3267 - # check that version is up to date 3268 - grep 'pname = "statix-vim"' -A 1 flake.nix \ 3269 - | grep -F 'version = "${version}"' 3270 - 3271 - cd vim-plugin 3272 - substituteInPlace ftplugin/nix.vim --replace-fail statix ${statix}/bin/statix 3273 - substituteInPlace plugin/statix.vim --replace-fail statix ${statix}/bin/statix 3274 - ''; 3275 }; 3276 3277 stylish-nvim = super.stylish-nvim.overrideAttrs {
··· 44 ripgrep, 45 sqlite, 46 sshfs, 47 stylish-haskell, 48 tabnine, 49 taskwarrior2, ··· 3257 3258 startup-nvim = super.startup-nvim.overrideAttrs { 3259 dependencies = [ self.plenary-nvim ]; 3260 }; 3261 3262 stylish-nvim = super.stylish-nvim.overrideAttrs {