mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-14 16:36:24 +00:00
f3fd89af54
Many thangs to the hard work and generous availability of: git@github.com:Misterio77/nix-config.git
16 lines
407 B
Nix
16 lines
407 B
Nix
{ vimUtils, fetchFromGitHub }:
|
|
let
|
|
pname = "vim-medieval";
|
|
in
|
|
vimUtils.buildVimPlugin {
|
|
inherit pname;
|
|
version = "2022-02-07";
|
|
dontBuild = true;
|
|
src = fetchFromGitHub {
|
|
owner = "gpanders";
|
|
repo = "${pname}";
|
|
rev = "029ba76340cc51d481d5fa0ad19e25b0ee13b3c5";
|
|
sha256 = "sha256-JYkevNxW/RYLVfxXSGYvVSQwmjk2zSvzxLVTbR0lzek=";
|
|
};
|
|
patches = [ ./preview-instead-of-scratch.patch ];
|
|
}
|