Files
2026-06-06 17:31:12 +01:00

18 lines
242 B
Nix

{
vimUtils,
notmuch,
}:
vimUtils.buildVimPlugin {
inherit (notmuch) pname version;
src = notmuch.vim;
meta = {
inherit (notmuch.meta)
changelog
description
homepage
license
platforms
;
};
}