Commit f30319b3 authored by Matthieu C.'s avatar Matthieu C.
Browse files

lua51Packages.lualine-nvim: init

vimPlugins.lualine-nvim: use buildNeovimPlugin instead

now packaged from lua
parent 18c99839
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -81,6 +81,7 @@ luaexpat,,,,1.4.1-1,,arobyn flosse
luaffi,,,http://luarocks.org/dev,,,
luafilesystem,,,,1.8.0-1,,flosse
lualdap,,,,,,aanderse
lualine.nvim,,,http://luarocks.org/dev,,,
lualogging,,,,,,
luaossl,,,,,5.1,
luaposix,,,,34.1.1-1,,vyp lblasc
+0 −13
Original line number Diff line number Diff line
@@ -7051,19 +7051,6 @@ final: prev:
    meta.hydraPlatforms = [ ];
  };
  lualine-nvim = buildVimPlugin {
    pname = "lualine.nvim";
    version = "2025-02-08";
    src = fetchFromGitHub {
      owner = "nvim-lualine";
      repo = "lualine.nvim";
      rev = "f4f791f67e70d378a754d02da068231d2352e5bc";
      sha256 = "12jm3vc3mi0p9kjw7g1cd6a9nkgws1mvq2h7lpfmflad8zfmw35q";
    };
    meta.homepage = "https://github.com/nvim-lualine/lualine.nvim/";
    meta.hydraPlatforms = [ ];
  };
  luasnip-latex-snippets-nvim = buildVimPlugin {
    pname = "luasnip-latex-snippets.nvim";
    version = "2024-11-25";
+1 −0
Original line number Diff line number Diff line
@@ -4004,6 +4004,7 @@ in
      "gitsigns-nvim"
      "image-nvim"
      "lsp-progress-nvim"
      "lualine-nvim"
      "luasnip"
      "lush-nvim"
      "lz-n"
+0 −1
Original line number Diff line number Diff line
@@ -540,7 +540,6 @@ https://github.com/nvimdev/lspsaga.nvim/,,
https://github.com/barreiroleo/ltex_extra.nvim/,HEAD,
https://github.com/nvim-java/lua-async/,HEAD,
https://github.com/arkav/lualine-lsp-progress/,,
https://github.com/nvim-lualine/lualine.nvim/,,
https://github.com/evesdropper/luasnip-latex-snippets.nvim/,HEAD,
https://github.com/alvarosevilla95/luatab.nvim/,,
https://github.com/mkasa/lushtags/,,
+25 −0
Original line number Diff line number Diff line
@@ -1946,6 +1946,31 @@ buildLuarocksPackage {
  };
}) {};

lualine-nvim = callPackage({ buildLuarocksPackage, fetchFromGitHub, fetchurl, luaOlder, nvim-web-devicons }:
buildLuarocksPackage {
  pname = "lualine.nvim";
  version = "scm-1";
  knownRockspec = (fetchurl {
    url    = "mirror://luarocks/lualine.nvim-scm-1.rockspec";
    sha256 = "1mzsfiq4h95s0nbygwii2w8xs5rixdbha322bvx453k530s2kxxj";
  }).outPath;
  src = fetchFromGitHub {
    owner = "nvim-lualine";
    repo = "lualine.nvim";
    rev = "f4f791f67e70d378a754d02da068231d2352e5bc";
    hash = "sha256-uAxe3UdNUVfdpQcKvGvQ/E2blGksvMPlTBfEOtgeVYo=";
  };

  disabled = luaOlder "5.1";
  propagatedBuildInputs = [ nvim-web-devicons ];

  meta = {
    homepage = "https://github.com/nvim-lualine/lualine.nvim";
    description = "A blazing fast and easy to configure neovim statusline plugin written in pure lua.";
    license.fullName = "MIT";
  };
}) {};

lualogging = callPackage({ buildLuarocksPackage, fetchFromGitHub, fetchurl, luasocket }:
buildLuarocksPackage {
  pname = "lualogging";
Loading