Files
2026-06-22 20:34:52 +07:00

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";
};
}