Bump version of vim-typoscript

This commit is contained in:
Jakob Lechner 2025-11-25 15:13:14 +01:00
parent 37a8d355ee
commit a4bdad1880

View file

@ -1,12 +1,11 @@
{ buildVimPlugin, fetchFromGitHub }:
{ buildVimPlugin, fetchgit }:
buildVimPlugin rec {
pname = "vim-typoscript";
version = "2.0.0";
src = fetchFromGitHub {
owner = "DanielSiepmann";
repo = "mirror-vim.typoscript";
version = "2.1.0";
src = fetchgit {
url = "https://git.daniel-siepmann.de/danielsiepmann/vim-syntax-typoscript";
rev = "v${version}";
sha256 = "sha256-fCB+ikDmkfEP/W0pFYGrsZiH30vT0g3z6GZpRGk0Rhc=";
hash = "sha256-m2Gxycsrs9WbPydXCziWFsIYMJrDlfGF98SaamPBuuM=";
};
meta.homepage = "https://git.daniel-siepmann.de/danielsiepmann/vim-syntax-typoscript";
}