default.nix 608 B

123456789101112131415161718192021222324252627
  1. { fetchFromGitHub, buildNeovimPlugin }:
  2. let
  3. plugins = builtins.fromJSON (builtins.readFile ./sources.json);
  4. overrides = {
  5. "nvim-telescope/telescope-fzf-native.nvim" = {
  6. dontBuild = false;
  7. };
  8. };
  9. buildPlugin = name: spec:
  10. let
  11. nameParts = builtins.split "/" name;
  12. owner = builtins.head nameParts;
  13. repo = builtins.elemAt nameParts 2;
  14. in
  15. buildNeovimPlugin ({
  16. name = repo;
  17. src = fetchFromGitHub (spec // {
  18. inherit owner repo;
  19. });
  20. dontBuild = true;
  21. } // (overrides.${name} or {}));
  22. in
  23. builtins.mapAttrs buildPlugin plugins