nix-config/pkgs/vim-plugins/mermaid-vim/default.nix
Greg Burd f3fd89af54
A fork of Misterio77 and his standard template.
Many thangs to the hard work and generous availability of:
git@github.com:Misterio77/nix-config.git
2023-09-15 10:53:38 -04:00

14 lines
390 B
Nix

{ vimUtils, fetchFromGitHub }:
vimUtils.buildVimPlugin {
pname = "mermaid-vim";
version = "2022-02-15";
dontBuild = true;
src = fetchFromGitHub {
owner = "mracos";
repo = "mermaid.vim";
rev = "a8470711907d47624d6860a2bcbd0498a639deb6";
sha256 = "sha256-LRuuCFamwvBm9e5mbQ8CkGgclEY9iv52uRl/2kGBUc8=";
};
meta.homepage = "https://github.org/mracos/mermaid.vim";
}