mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-01 13:14:42 +00:00
19 lines
326 B
Nix
19 lines
326 B
Nix
{
|
|
vimUtils,
|
|
statix,
|
|
}:
|
|
vimUtils.buildVimPlugin {
|
|
inherit (statix)
|
|
pname
|
|
src
|
|
meta
|
|
version
|
|
;
|
|
|
|
postPatch = ''
|
|
cd vim-plugin
|
|
substituteInPlace ftplugin/nix.vim --replace-fail statix ${statix}/bin/statix
|
|
substituteInPlace plugin/statix.vim --replace-fail statix ${statix}/bin/statix
|
|
'';
|
|
}
|