You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
436 B
17 lines
436 B
{ vimUtils, fetchFromGitea }:
|
|
let
|
|
pname = "gemini-vim-syntax";
|
|
in
|
|
vimUtils.buildVimPlugin {
|
|
inherit pname;
|
|
version = "2021-11-15";
|
|
dontBuild = true;
|
|
src = fetchFromGitea {
|
|
domain = "tildegit.org";
|
|
owner = "sloum";
|
|
repo = pname;
|
|
rev = "596d1f36b386e5b2cc1af4f2f8285134626878d1";
|
|
sha256 = "sha256-4Ma74KdAWtr00NNV0DbDL0SwY6s4d2Ok1HaUvVzCrMA=";
|
|
};
|
|
meta.homepage = "https://tildegit.org/sloum/${pname}";
|
|
}
|
|
|