summaryrefslogtreecommitdiff
path: root/default.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-09-17 04:54:00 -0400
committerseth <[email protected]>2023-10-07 12:55:41 -0400
commit9d0051e6b4170851ebcc09e7ff44097818c8e1dc (patch)
tree067e1d6b745fc61aeb9b885439482f946bbdf2fe /default.nix
parente910460767dd835c7fb8aa7a59082e645c207cbd (diff)
start using willruggiano/neovim.nix
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix30
1 files changed, 0 insertions, 30 deletions
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;
- };
- }