blob: f47fcfe981bf1853ec16276903f96e948e3ecea0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{ vimUtils, fetchFromGitHub, lib, unstableGitUpdater }:
vimUtils.buildVimPlugin {
name = "vim-cooklang";
src = fetchFromGitHub {
owner = "luizribeiro";
repo = "vim-cooklang";
rev = "ba334ed";
hash = "sha256-vWlk7G1V4DLC0G0f3GLEG3JsvAwJ637CPocmMmFxQek=";
};
passthru.updateScript = unstableGitUpdater {};
meta = with lib; {
homepage = "https://github.com/luizribeiro/vim-cooklang";
description = "A cooklang syntax highlighting plugin for vim";
license = licenses.mit;
maintainers = [{
name = "Chris Wells";
github = "the-mathematicaster";
email = "chris@mathematicaster.org";
githubId = 99217745;
}];
};
}
|