1
0
Fork 0
nix-overlay/packages/neovim-nightly.nix

14 lines
422 B
Nix
Raw Normal View History

2023-10-28 14:30:43 +00:00
{ neovim, pkgs, lib, ... }:
2023-05-10 21:29:38 +00:00
2023-10-28 14:30:43 +00:00
let
latest-libvterm = pkgs.libvterm-neovim.overrideAttrs (_: rec {
version = "0.3.3";
src = pkgs.fetchurl {
url = "https://github.com/neovim/deps/raw/12c9dcf1d823ac4acbccf494c93c4774a87db11d/opt/libvterm-${version}.tar.gz";
sha256 = "09156f43dd2128bd347cbeebe50d9a571d32c64e0cf18d211197946aff7226e0";
};
});
in
neovim.override { libvterm-neovim = latest-libvterm; }