aboutsummaryrefslogtreecommitdiff
path: root/overlays/neovim.nix
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2025-03-03 12:40:13 +0530
committerAkshay Nair <phenax5@gmail.com>2025-03-03 12:40:13 +0530
commit18f06a9f13ef4487eadb6c343b6b155649088953 (patch)
tree14ddf36d2cdacd143bd60f462dbc18aeec011b09 /overlays/neovim.nix
parent8a518fbba8b808040ae5b5d13ccfb455e679175c (diff)
downloadnixos-config-18f06a9f13ef4487eadb6c343b6b155649088953.tar.gz
nixos-config-18f06a9f13ef4487eadb6c343b6b155649088953.zip
Neovim nightly, package changes, etc
Diffstat (limited to 'overlays/neovim.nix')
-rw-r--r--overlays/neovim.nix24
1 files changed, 3 insertions, 21 deletions
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";
+})