1
0
Fork 0
nix-overlay/packages/neovim-nightly.nix
Daniel Kempkens a6688f3bbe
Some checks failed
Build / build-amd64-linux (push) Failing after 10m4s
Build / build-arm64-linux (push) Successful in 25m32s
neovim: Update libvterm version
2023-10-28 16:30:43 +02:00

14 lines
422 B
Nix

{ neovim, pkgs, lib, ... }:
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; }