summary refs log tree commit diff
path: root/pkgs/misc/vim-plugins/overrides.nix
diff options
context:
space:
mode:
authorMalo Bourgon <mbourgon@gmail.com>2021-04-13 11:19:01 -0700
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-04-19 14:16:22 -0700
commit78c9b87283e3d132a62196a3b60632e106ed8ebc (patch)
treed7fdce6f3e9ed9f6a76e250d64fd69d9307a8bc3 /pkgs/misc/vim-plugins/overrides.nix
parente2926d64ba1837b58514622c38afdf5892e55575 (diff)
downloadnixpkgs-78c9b87283e3d132a62196a3b60632e106ed8ebc.tar
nixpkgs-78c9b87283e3d132a62196a3b60632e106ed8ebc.tar.gz
nixpkgs-78c9b87283e3d132a62196a3b60632e106ed8ebc.tar.bz2
nixpkgs-78c9b87283e3d132a62196a3b60632e106ed8ebc.tar.lz
nixpkgs-78c9b87283e3d132a62196a3b60632e106ed8ebc.tar.xz
nixpkgs-78c9b87283e3d132a62196a3b60632e106ed8ebc.tar.zst
nixpkgs-78c9b87283e3d132a62196a3b60632e106ed8ebc.zip
vimPlugins: cleanup overrides arguments
Diffstat (limited to 'pkgs/misc/vim-plugins/overrides.nix')
-rw-r--r--pkgs/misc/vim-plugins/overrides.nix110
1 files changed, 58 insertions, 52 deletions
diff --git a/pkgs/misc/vim-plugins/overrides.nix b/pkgs/misc/vim-plugins/overrides.nix
index 0059f025753..7e12d083c32 100644
--- a/pkgs/misc/vim-plugins/overrides.nix
+++ b/pkgs/misc/vim-plugins/overrides.nix
@@ -1,81 +1,87 @@
 { lib
 , stdenv
-, python
-, cmake
-, meson
-, vim
-, ruby
-, which
+
+  # nixpkgs functions
+, buildGoModule
+, buildVimPluginFrom2Nix
 , fetchFromGitHub
-, fetchurl
 , fetchpatch
-, llvmPackages
+, fetchurl
+, substituteAll
+
+  # Language dependencies
+, python
+, python3
 , rustPlatform
-, buildGoModule
-, pkg-config
-, curl
-, openssl
-, libgit2
-, libiconv
-, xkb-switch
+
+  # Misc dependencies
+, Cocoa
+, code-minimap
+, dasht
+, direnv
 , fzf
+, gnome3
+, khard
+, languagetool
+, llvmPackages
+, meson
+, nim
+, nodePackages
 , skim
+, sqlite
 , stylish-haskell
-, python3
+, tabnine
+, vim
+, which
+, xkb-switch
+, ycmd
+
+  # command-t dependencies
+, rake
+, ruby
+
+  # cpsm dependencies
 , boost
+, cmake
 , icu
 , ncurses
-, ycmd
-, rake
-, gobject-introspection
-, glib
-, wrapGAppsHook
-, substituteAll
-, languagetool
-, tabnine
 
-, Cocoa
+  # LanguageClient-neovim dependencies
 , CoreFoundation
 , CoreServices
 
-, buildVimPluginFrom2Nix
-, nodePackages
-, dasht
-, sqlite
-, code-minimap
+  # sved dependencies
+, glib
+, gobject-introspection
+, wrapGAppsHook
 
-  # deoplete-khard dependency
-, khard
+  # vim-clap dependencies
+, curl
+, libgit2
+, libiconv
+, openssl
+, pkg-config
 
-  # vim-go dependencies
+# vim-go dependencies
 , asmfmt
 , delve
 , errcheck
+, gnused
+, go-motion
+, go-tools
+, gocode
+, gocode-gomod
 , godef
+, gogetdoc
+, golangci-lint
 , golint
 , gomodifytags
+, gopls
 , gotags
 , gotools
-, go-motion
-, gnused
-, reftools
-, gogetdoc
-, golangci-lint
-, impl
 , iferr
-, gocode
-, gocode-gomod
-, go-tools
-, gopls
-
-  # direnv-vim dependencies
-, direnv
-
-  # vCoolor dependency
-, gnome3
-
-  # fruzzy dependency
-, nim
+, impl
+, reftools
 }:
 
 self: super: {