From 9d0051e6b4170851ebcc09e7ff44097818c8e1dc Mon Sep 17 00:00:00 2001 From: seth Date: Sun, 17 Sep 2023 04:54:00 -0400 Subject: start using willruggiano/neovim.nix --- default.nix | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 default.nix (limited to 'default.nix') diff --git a/default.nix b/default.nix deleted file mode 100644 index be725bd..0000000 --- a/default.nix +++ /dev/null @@ -1,30 +0,0 @@ -{ - lib, - buildVimPluginFrom2Nix, - self, - version, -}: let - filter = path: type: let - path' = toString path; - base = baseNameOf path'; - isLua = lib.any (suffix: lib.hasSuffix suffix base) [".lua"]; - in - type == "directory" || isLua; - - filterSource = src: - lib.cleanSourceWith { - src = lib.cleanSource self; - inherit filter; - }; -in - buildVimPluginFrom2Nix { - pname = "getchvim"; - inherit version; - src = filterSource self; - meta = with lib; { - homepage = "https://github.com/getchoo/getchvim"; - license = licenses.mit; - maintainers = with maintainers; [getchoo]; - platforms = platforms.all; - }; - } -- cgit v1.2.3