default.nix 836 B

123456789101112131415161718192021222324252627282930313233343536
  1. { fetchFromGitHub, buildNeovimPlugin }:
  2. let
  3. plugins = builtins.fromJSON (builtins.readFile ./sources.json);
  4. overrides = {
  5. "tpope/vim-fugitive" = {
  6. patches = [ ./fugitive-origin-head.patch ];
  7. };
  8. "leafgarland/typescript-vim" = {
  9. # make compiler build entire project
  10. patches = [ ./typescript-vim-compiler.patch ];
  11. };
  12. "nvim-telescope/telescope-fzf-native.nvim" = {
  13. dontBuild = false;
  14. };
  15. };
  16. buildPlugin = name: spec:
  17. let
  18. nameParts = builtins.split "/" name;
  19. owner = builtins.head nameParts;
  20. repo = builtins.elemAt nameParts 2;
  21. in
  22. buildNeovimPlugin ({
  23. name = repo;
  24. src = fetchFromGitHub (spec // {
  25. inherit owner repo;
  26. });
  27. dontBuild = true;
  28. } // (overrides.${name} or {}));
  29. in
  30. builtins.mapAttrs buildPlugin plugins