mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
vimPlugins.meson: init, following pkgs.meson
This commit is contained in:
parent
81bf897e29
commit
aed7621ef8
1 changed files with 7 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
{ lib, stdenv
|
||||
, python, cmake, vim, ruby
|
||||
, python, cmake, meson, vim, ruby
|
||||
, which, fetchgit, fetchurl
|
||||
, llvmPackages, rustPlatform
|
||||
, xkb-switch, fzf, skim
|
||||
|
@ -160,6 +160,12 @@ self: super: {
|
|||
dependencies = with super; [ webapi-vim ];
|
||||
});
|
||||
|
||||
meson = buildVimPluginFrom2Nix {
|
||||
inherit (meson) pname version src;
|
||||
preInstall = "cd data/syntax-highlighting/vim";
|
||||
meta.maintainers = with stdenv.lib.maintainers; [ vcunat ];
|
||||
};
|
||||
|
||||
ncm2 = super.ncm2.overrideAttrs(old: {
|
||||
dependencies = with super; [ nvim-yarp ];
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue