about summary refs log tree commit diff stats
path: root/sys/nixpkgs/pkgs/plgs-pkgs/default.nix
blob: 0f7cd485216030082a5d80b805333bef293155b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[
  (final: prev:
    prev.lib.composeManyExtensions [
      (self: super: let
        origin = import ./plugins {
          inherit (super.vimUtils) buildVimPlugin;
          inherit (super) lib fetchurl fetchgit;
        };
      in {
        vimExtraPlugins = super.lib.makeExtensible (_: super.lib.recurseIntoAttrs origin);
      })
    ]
    final
    prev)
]