Skip to content

Commit

Permalink
vimPlugins.lze: init at 0.1.1
Browse files Browse the repository at this point in the history
I made this, and I almost completely deleted it because I was fully
on board with lz-n again. However, I have been using it and lz-n
simultaneosly and trying them out.

I wish to publish lze after all. I like it a lot.

It works completely differently from lz-n and has a different handler
api, but has a similar plugin spec.

Update pkgs/development/lua-modules/overrides.nix

Co-authored-by: Gaétan Lepage <[email protected]>
  • Loading branch information
BirdeeHub and GaetanLepage committed Sep 13, 2024
1 parent 9138c72 commit 6b1aa61
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 0 deletions.
1 change: 1 addition & 0 deletions maintainers/scripts/luarocks-packages.csv
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ luv,,,,1.48.0-2,,
lush.nvim,,,https://luarocks.org/dev,,,teto
lyaml,,,,,,lblasc
lz.n,,,,,,mrcjkb
lze,,,,,,birdee
lzn-auto-require,,,,,,mrcjkb
magick,,,,,5.1,donovanglover
markdown,,,,,,
Expand Down
2 changes: 2 additions & 0 deletions pkgs/applications/editors/vim/plugins/overrides.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1015,6 +1015,8 @@

lz-n = neovimUtils.buildNeovimPlugin { luaAttr = "lz-n"; };

lze = neovimUtils.buildNeovimPlugin { luaAttr = "lze"; };

lzn-auto-require = neovimUtils.buildNeovimPlugin { luaAttr = "lzn-auto-require"; };

magma-nvim-goose = buildVimPlugin {
Expand Down
23 changes: 23 additions & 0 deletions pkgs/development/lua-modules/generated-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2512,6 +2512,29 @@ buildLuarocksPackage {
};
}) {};

lze = callPackage({ buildLuarocksPackage, fetchurl, fetchzip, luaOlder }:
buildLuarocksPackage {
pname = "lze";
version = "0.1.1-1";
knownRockspec = (fetchurl {
url = "mirror://luarocks/lze-0.1.1-1.rockspec";
sha256 = "0rih9kgx846qhp1fmsqlnp8y08kv4hp8gl9dwykz4zr0zljy94j3";
}).outPath;
src = fetchzip {
url = "https://github.com/BirdeeHub/lze/archive/v0.1.1.zip";
sha256 = "1s6n61jabsv94s37xd5g0y7fxhficc4rwsklgsmzajravpgy60a8";
};

disabled = luaOlder "5.1";

meta = {
homepage = "https://github.com/BirdeeHub/lze";
description = "A lazy-loading library for neovim, inspired by, but different from, nvim-neorocks/lz.n";
maintainers = with lib.maintainers; [ birdee ];
license.fullName = "GPL-2+";
};
}) {};

lzn-auto-require = callPackage({ buildLuarocksPackage, fetchurl, fetchzip, luaOlder, lz-n }:
buildLuarocksPackage {
pname = "lzn-auto-require";
Expand Down
11 changes: 11 additions & 0 deletions pkgs/development/lua-modules/overrides.nix
Original file line number Diff line number Diff line change
Expand Up @@ -544,6 +544,17 @@ in
'';
});

lze = prev.lze.overrideAttrs(oa: {
doCheck = lua.luaversion == "5.1";
nativeCheckInputs = [ final.nlua final.busted ];
checkPhase = ''
runHook preCheck
export HOME=$(mktemp -d)
busted --lua=nlua
runHook postCheck
'';
});

neotest = prev.neotest.overrideAttrs(oa: {
# A few tests fail for strange reasons on darwin
doCheck = !stdenv.isDarwin;
Expand Down

0 comments on commit 6b1aa61

Please sign in to comment.