13 lines
389 B
Nix
13 lines
389 B
Nix
{ buildVimPlugin, fetchFromGitHub }:
|
|
buildVimPlugin rec {
|
|
pname = "vim-typoscript";
|
|
version = "2.0.0";
|
|
src = fetchFromGitHub {
|
|
owner = "DanielSiepmann";
|
|
repo = "mirror-vim.typoscript";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-fCB+ikDmkfEP/W0pFYGrsZiH30vT0g3z6GZpRGk0Rhc=";
|
|
};
|
|
meta.homepage = "https://git.daniel-siepmann.de/danielsiepmann/vim-syntax-typoscript";
|
|
}
|
|
|