all repos — nixfiles @ c910033fc6cc5032e25772627259a4d4ee3a9a64

System and user configuration, managed by nix and home-manager

overlays/extra-packages.nix (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
self: super: {
  vimPlugins = super.vimPlugins.extend (final: prev: {
    coc-tabnine =
      let
        inherit (super) tabnine;
      in
      prev.coc-tabnine.overrideAttrs {
        buildInputs = [ tabnine ];

        postFixup = ''
          mkdir -p $target/binaries/${tabnine.version}
          ln -s ${tabnine}/bin/ $target/binaries/${tabnine.version}/${tabnine.passthru.platform}
        '';
      };
  });
}