mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-01 13:14:42 +00:00
18 lines
242 B
Nix
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
|
|
;
|
|
};
|
|
}
|