forked from mirrors/nixpkgs
vimPlugins.overrides: add coc-prettier
This commit is contained in:
parent
47069c019f
commit
347479b6e0
|
@ -10,6 +10,7 @@
|
|||
, languagetool
|
||||
, Cocoa, CoreFoundation, CoreServices
|
||||
, buildVimPluginFrom2Nix
|
||||
, nodePackages
|
||||
|
||||
# coc-go dependency
|
||||
, go
|
||||
|
@ -138,6 +139,12 @@ self: super: {
|
|||
};
|
||||
};
|
||||
|
||||
coc-prettier = buildVimPluginFrom2Nix {
|
||||
pname = "coc-prettier";
|
||||
version = nodePackages.coc-prettier.version;
|
||||
src = "${nodePackages.coc-prettier}/lib/node_modules/coc-prettier";
|
||||
};
|
||||
|
||||
command-t = super.command-t.overrideAttrs(old: {
|
||||
buildInputs = [ ruby rake ];
|
||||
buildPhase = ''
|
||||
|
|
Loading…
Reference in a new issue