mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
19 lines
367 B
Nix
19 lines
367 B
Nix
{
|
|
lib,
|
|
vimUtils,
|
|
meson,
|
|
}:
|
|
vimUtils.buildVimPlugin {
|
|
inherit (meson) pname version src;
|
|
preInstall = "cd data/syntax-highlighting/vim";
|
|
|
|
meta = {
|
|
description = "Vim plugin for meson providing syntax highlighting";
|
|
inherit (meson.meta)
|
|
homepage
|
|
license
|
|
platforms
|
|
;
|
|
maintainers = with lib.maintainers; [ vcunat ];
|
|
};
|
|
}
|