mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-13 00:16:24 +00:00
f3fd89af54
Many thangs to the hard work and generous availability of: git@github.com:Misterio77/nix-config.git
16 lines
418 B
Nix
16 lines
418 B
Nix
{ vimUtils, fetchFromGitHub }:
|
|
let
|
|
pname = "vim-syntax-shakespeare";
|
|
in
|
|
vimUtils.buildVimPlugin {
|
|
inherit pname;
|
|
version = "2021-12-14";
|
|
dontBuild = true;
|
|
src = fetchFromGitHub {
|
|
owner = "pbrisbin";
|
|
repo = pname;
|
|
rev = "2f4f61eae55b8f1319ce3a086baf9b5ab57743f3";
|
|
sha256 = "sha256-sdCXJOvB+vJE0ir+qsT/u1cHNxrksMnqeQi4D/Vg6UA=";
|
|
};
|
|
meta.homepage = "https://github.com/pbrisbin/${pname}";
|
|
}
|