Use git version of neovim-qt

This commit is contained in:
Gabriel Ebner 2021-05-30 14:25:42 +02:00
parent 3e04ee4912
commit ff1d7507a7
1 changed files with 8 additions and 1 deletions

View File

@ -4,6 +4,13 @@
nixpkgs.overlays = [ inputs.neovim-overlay.overlay ];
nixpkgs.config.packageOverrides = pkgs: with pkgs; {
inherit (inputs.nixpkgs.legacyPackages.${pkgs.system}) neovim-qt-unwrapped;
neovim-qt-unwrapped = neovim-qt-unwrapped.overrideDerivation (_: {
src = fetchFromGitHub {
owner = "equalsraf";
repo = "neovim-qt";
rev = "54987208b698c84e761cc097550b80641367f0c8";
sha256 = "sha256-I3/gPk5ay9Scs+YtVWNyLm2zE1T1cMEjdpVbYclHT1M=";
};
});
};
}