12 lines
388 B
Nix
12 lines
388 B
Nix
{ buildVimPlugin, fetchgit }:
|
|
buildVimPlugin rec {
|
|
pname = "vim-typoscript";
|
|
version = "2.1.0";
|
|
src = fetchgit {
|
|
url = "https://git.daniel-siepmann.de/danielsiepmann/vim-syntax-typoscript";
|
|
rev = "v${version}";
|
|
hash = "sha256-m2Gxycsrs9WbPydXCziWFsIYMJrDlfGF98SaamPBuuM=";
|
|
};
|
|
meta.homepage = "https://git.daniel-siepmann.de/danielsiepmann/vim-syntax-typoscript";
|
|
}
|
|
|