luaPackages.pathlib-nvim: init at 2.2.0-1

This commit is contained in:
Mathew Polzin 2024-04-04 10:00:39 -05:00 committed by Matthieu Coudron
parent 8042fcecd0
commit 4d92f8bcc6
2 changed files with 24 additions and 0 deletions

View File

@ -107,6 +107,7 @@ nlua,,,,,,teto
nui.nvim,,,,,,mrcjkb
nvim-cmp,https://github.com/hrsh7th/nvim-cmp,,,,,
nvim-nio,,,,,,mrcjkb
pathlib.nvim,,,,,,
penlight,https://github.com/lunarmodules/Penlight.git,,,,,alerque
plenary.nvim,https://github.com/nvim-lua/plenary.nvim.git,,,,5.1,
rapidjson,https://github.com/xpol/lua-rapidjson.git,,,,,

1 name src ref server version luaversion maintainers
107 nui.nvim mrcjkb
108 nvim-cmp https://github.com/hrsh7th/nvim-cmp
109 nvim-nio mrcjkb
110 pathlib.nvim
111 penlight https://github.com/lunarmodules/Penlight.git alerque
112 plenary.nvim https://github.com/nvim-lua/plenary.nvim.git 5.1
113 rapidjson https://github.com/xpol/lua-rapidjson.git

View File

@ -3028,6 +3028,29 @@ buildLuarocksPackage {
};
}) {};
pathlib-nvim = callPackage({ buildLuarocksPackage, fetchurl, fetchzip, lua, luaOlder, nvim-nio }:
buildLuarocksPackage {
pname = "pathlib.nvim";
version = "2.2.0-1";
knownRockspec = (fetchurl {
url = "mirror://luarocks/pathlib.nvim-2.2.0-1.rockspec";
sha256 = "0zj3psdq06822y8vl117z3y7zlc6jxwqppbv9irgwzr60wdz517n";
}).outPath;
src = fetchzip {
url = "https://github.com/pysan3/pathlib.nvim/archive/v2.2.0.zip";
sha256 = "1nyl3y0z2rrr35dyk2ypv8xjx43zamqxlpdq468iyyhfvkplz9yw";
};
disabled = (luaOlder "5.1");
propagatedBuildInputs = [ lua nvim-nio ];
meta = {
homepage = "https://pysan3.github.io/pathlib.nvim/";
description = "OS Independent, ultimate solution to path handling in neovim.";
license.fullName = "MPL-2.0";
};
}) {};
penlight = callPackage({ buildLuarocksPackage, fetchgit, lua, luaOlder, luafilesystem }:
buildLuarocksPackage {
pname = "penlight";