mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-02 21:54:45 +00:00
16 lines
306 B
Nix
16 lines
306 B
Nix
{ vimUtils, mirth }:
|
|
|
|
vimUtils.buildVimPlugin {
|
|
pname = "mirth";
|
|
inherit (mirth) version;
|
|
src = mirth.vim;
|
|
meta = {
|
|
inherit (mirth.meta)
|
|
homepage
|
|
license
|
|
platforms
|
|
;
|
|
description = "Syntax highlighting & filetype detection for the Mirth programming language";
|
|
};
|
|
}
|