From b6ca6b28b91db6ee9c91c6d2a37c2a907ac6e0e3 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Tue, 12 Apr 2022 10:37:40 +0200 Subject: [PATCH] overlays: remove vim-plugins-overrides --- overlays/default.nix | 2 -- overlays/vim-plugins-overrides/default.nix | 17 ----------------- 2 files changed, 19 deletions(-) delete mode 100644 overlays/vim-plugins-overrides/default.nix diff --git a/overlays/default.nix b/overlays/default.nix index 81692be..3f5a246 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -1,6 +1,4 @@ { - null-ls-update = import ./vim-plugins-overrides; - sabnzbd-fix-missing-packages = import ./sabnzbd-fix-missing-dependencies; transgui-fix-duplicate-status = import ./transgui-fix-duplicate-status; diff --git a/overlays/vim-plugins-overrides/default.nix b/overlays/vim-plugins-overrides/default.nix deleted file mode 100644 index 36c622b..0000000 --- a/overlays/vim-plugins-overrides/default.nix +++ /dev/null @@ -1,17 +0,0 @@ -final: prev: -let -in -{ - # FIXME: update null-ls - vimPlugins = prev.vimPlugins.extend (self: super: { - null-ls-nvim = super.null-ls-nvim.overrideAttrs (old: { - version = "2022-03-11"; - src = final.fetchFromGitHub { - owner = "jose-elias-alvarez"; - repo = "null-ls.nvim"; - rev = "1ee1da4970b3c94bed0d0250a353bff633901cd1"; - sha256 = "sha256-db9d2djNUCZzxIkycUn8Kcu4TS33w55eWxUn2OzcLas="; - }; - }); - }); -}