mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-12 02:40:31 +08:00
vimPlugins.phpactor: move to non-generated
Looks like it was missed in `overrides.nix` when it should be in non-generated. Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
{
|
||||
vimUtils,
|
||||
phpactor,
|
||||
}:
|
||||
vimUtils.buildVimPlugin {
|
||||
inherit (phpactor)
|
||||
pname
|
||||
src
|
||||
meta
|
||||
version
|
||||
;
|
||||
postPatch = ''
|
||||
substituteInPlace plugin/phpactor.vim \
|
||||
--replace-fail "g:phpactorpath = expand('<sfile>:p:h') . '/..'" "g:phpactorpath = '${phpactor}'"
|
||||
'';
|
||||
}
|
||||
@@ -40,7 +40,6 @@
|
||||
openscad,
|
||||
openssh,
|
||||
parinfer-rust,
|
||||
phpactor,
|
||||
ranger,
|
||||
ripgrep,
|
||||
skim,
|
||||
@@ -2969,19 +2968,6 @@ in
|
||||
];
|
||||
};
|
||||
|
||||
phpactor = buildVimPlugin {
|
||||
inherit (phpactor)
|
||||
pname
|
||||
src
|
||||
meta
|
||||
version
|
||||
;
|
||||
postPatch = ''
|
||||
substituteInPlace plugin/phpactor.vim \
|
||||
--replace-fail "g:phpactorpath = expand('<sfile>:p:h') . '/..'" "g:phpactorpath = '${phpactor}'"
|
||||
'';
|
||||
};
|
||||
|
||||
plantuml-nvim = super.plantuml-nvim.overrideAttrs {
|
||||
dependencies = [ self.LibDeflate-nvim ];
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user