]> Git — Sourcephile - julm/julm-nix.git/blob - nixpkgs/overlays/vim-ghcid-quickfix.nix
nix: format with nixfmt-rfc-style
[julm/julm-nix.git] / nixpkgs / overlays / vim-ghcid-quickfix.nix
1 final: super: {
2 vimPlugins = super.vimPlugins.extend (
3 _vfinal: _vsuper: {
4 vim-ghcid-quickfix = final.vimUtils.buildVimPluginFrom2Nix {
5 pname = "vim-ghcid-quickfix";
6 version = "186201ae90c4c98076436efaac1e35daf2c88d72";
7 src = super.fetchFromGitHub {
8 owner = "aiya000";
9 repo = "vim-ghcid-quickfix";
10 rev = "186201ae90c4c98076436efaac1e35daf2c88d72";
11 sha256 = "sha256-qcabzRFv/o5ZRRvGixHtcQGnSg0S20XHaQkqsE31N4g=";
12 };
13 meta.homepage = "https://github.com/aiya000/vim-ghcid-quickfix";
14 };
15 }
16 );
17 }