Unverified Commit 2caca43d authored by Matthieu Coudron's avatar Matthieu Coudron Committed by GitHub
Browse files

Merge pull request #262532 from mrcjkb/ferris-nvim

luaPackages/vimPlugins.ferris-nvim: init at 2.0.0
parents c74acf03 cf965856
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -16,6 +16,7 @@ cyrussasl,https://github.com/JorjBauer/lua-cyrussasl.git,,,,,
digestif,https://github.com/astoff/digestif.git,,,0.2-1,5.3,
dkjson,,,,,,
fennel,,,,,,misterio77
ferris.nvim,,,,,,mrcjkb
fifo,,,,,,
fluent,,,,,,alerque
gitsigns.nvim,https://github.com/lewis6991/gitsigns.nvim.git,,,,5.1,
+12 −0
Original line number Diff line number Diff line
@@ -3333,6 +3333,18 @@ final: prev:
    meta.homepage = "https://github.com/wincent/ferret/";
  };

  ferris-nvim = buildNeovimPlugin {
    pname = "ferris.nvim";
    version = "2023-11-21";
    src = fetchFromGitHub {
      owner = "mrcjkb";
      repo = "ferris.nvim";
      rev = "54943eaeb0d4534988d2378936052655c988c3c2";
      sha256 = "o4yY4IHYBCnanfy7dx/wGdiPFMLMKZsYrG2SqlPRvdI=";
    };
    meta.homepage = "https://github.com/mrcjkb/ferris.nvim/";
  };

  fidget-nvim = buildVimPlugin {
    pname = "fidget.nvim";
    version = "2023-06-10";
+1 −0
Original line number Diff line number Diff line
@@ -277,6 +277,7 @@ https://github.com/freddiehaddad/feline.nvim/,,
https://github.com/bakpakin/fennel.vim/,,
https://github.com/lambdalisue/fern.vim/,,
https://github.com/wincent/ferret/,,
https://github.com/mrcjkb/ferris.nvim/,HEAD,
https://github.com/j-hui/fidget.nvim/,legacy,
https://github.com/bogado/file-line/,,
https://github.com/glacambre/firenvim/,HEAD,
+24 −0
Original line number Diff line number Diff line
@@ -478,6 +478,30 @@ buildLuarocksPackage {
  };
}) {};

ferris-nvim = callPackage({ fetchzip, buildLuarocksPackage, lua, luaOlder }:
buildLuarocksPackage {
  pname = "ferris.nvim";
  version = "2.0.0-1";
  knownRockspec = (fetchurl {
    url    = "mirror://luarocks/ferris.nvim-2.0.0-1.rockspec";
    sha256 = "00d3x2hbs8625ky50r2w08c6idcx3bkrk0rks5qd8yh7v61nj53h";
  }).outPath;
  src = fetchzip {
    url    = "https://github.com/mrcjkb/ferris.nvim/archive/2.0.0.zip";
    sha256 = "1fb18k0ylb06h4ifs9k6lfc42y74xpavzwkqy55lfdkmlbc7jmhy";
  };

  disabled = (luaOlder "5.1");
  propagatedBuildInputs = [ lua ];

  meta = {
    homepage = "https://github.com/mrcjkb/ferris.nvim";
    description = "Supercharge your Rust experience in Neovim! A heavily modified fork of rust-tools.nvim";
    maintainers = with lib.maintainers; [ mrcjkb ];
    license.fullName = "GPL-2.0";
  };
}) {};

fifo = callPackage({ fetchzip, lua, buildLuarocksPackage }:
buildLuarocksPackage {
  pname = "fifo";