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