mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-10 15:36:25 +00:00
f3fd89af54
Many thangs to the hard work and generous availability of: git@github.com:Misterio77/nix-config.git
17 lines
436 B
Nix
17 lines
436 B
Nix
{ 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}";
|
|
}
|