diff options
Diffstat (limited to '')
| -rw-r--r-- | overlays-system.nix | 1 | ||||
| -rw-r--r-- | overlays/neovim.nix | 24 |
2 files changed, 4 insertions, 21 deletions
diff --git a/overlays-system.nix b/overlays-system.nix index 4ae9609..8de97c5 100644 --- a/overlays-system.nix +++ b/overlays-system.nix @@ -7,5 +7,6 @@ in pass-with-dmenu qutebrowser j4-dmenu-desktop + neovim-nightly ]; } diff --git a/overlays/neovim.nix b/overlays/neovim.nix index 1118d94..915c1e0 100644 --- a/overlays/neovim.nix +++ b/overlays/neovim.nix @@ -1,21 +1,3 @@ -self: super: { - tree-sitter-updated = super.tree-sitter.overrideAttrs ( - oldAttrs: { - postInstall = ''PREFIX=$out make install''; - } - ); - neovim-unwrapped = super.neovim-unwrapped.overrideAttrs ( - oldAttrs: rec { - name = "neovim-nightly"; - version = "0.5-nightly"; - src = self.fetchFromGitHub { - owner = "neovim"; - repo = "neovim"; - rev = "nightly"; - sha256 = "145mzl1pzqy0ic9gm0322z9ssvbyj0v9xiqs7k0wmi8b0590xg8s"; - }; - - nativeBuildInputs = with self.pkgs; [ unzip cmake pkg-config gettext tree-sitter-updated ]; - } - ); -} +import (builtins.fetchTarball { + url = "https://github.com/nix-community/neovim-nightly-overlay/archive/master.tar.gz"; +}) |
