mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
vimPlugins.mini-test: build from lua package
I needed the lua package to run the tests for grug-far-nvim
This commit is contained in:
parent
8cf288aea9
commit
3b33c51443
4 changed files with 24 additions and 13 deletions
|
@ -116,6 +116,7 @@ markdown,,,,,,
|
|||
mediator_lua,,,,,,
|
||||
middleclass,,,,,,
|
||||
mimetypes,,,,,,
|
||||
mini.test,,,,,,
|
||||
moonscript,https://raw.githubusercontent.com/leafo/moonscript/master/moonscript-dev-1.rockspec,,,,,arobyn
|
||||
mpack,,,,,,
|
||||
neorg,,,,,,GaetanLepage
|
||||
|
|
|
|
@ -7975,19 +7975,6 @@ final: prev:
|
|||
meta.hydraPlatforms = [ ];
|
||||
};
|
||||
|
||||
mini-test = buildVimPlugin {
|
||||
pname = "mini.test";
|
||||
version = "2025-02-24";
|
||||
src = fetchFromGitHub {
|
||||
owner = "echasnovski";
|
||||
repo = "mini.test";
|
||||
rev = "82ae4d87a23faa27e7e4119d4a5cf5897cbf1b70";
|
||||
sha256 = "0n3n7j8lkxp6mc0wf80ysnwxfw29zjqyfs3ghjl518xbsvjbgcz6";
|
||||
};
|
||||
meta.homepage = "https://github.com/echasnovski/mini.test/";
|
||||
meta.hydraPlatforms = [ ];
|
||||
};
|
||||
|
||||
mini-trailspace = buildVimPlugin {
|
||||
pname = "mini.trailspace";
|
||||
version = "2025-01-31";
|
||||
|
|
|
@ -4035,6 +4035,7 @@ in
|
|||
"lzextras"
|
||||
"lzn-auto-require"
|
||||
"middleclass"
|
||||
"mini-test"
|
||||
"neorg"
|
||||
"neotest"
|
||||
"nui-nvim"
|
||||
|
|
|
@ -2772,6 +2772,28 @@ buildLuarocksPackage {
|
|||
};
|
||||
}) {};
|
||||
|
||||
mini-test = callPackage({ buildLuarocksPackage, fetchurl, fetchzip, luaOlder }:
|
||||
buildLuarocksPackage {
|
||||
pname = "mini.test";
|
||||
version = "0.15.0-1";
|
||||
knownRockspec = (fetchurl {
|
||||
url = "mirror://luarocks/mini.test-0.15.0-1.rockspec";
|
||||
sha256 = "1shfgfcjy3ab3a1mn79w4sw3nf6mf8fmdph6h7bxn5nhyhzbfxvk";
|
||||
}).outPath;
|
||||
src = fetchzip {
|
||||
url = "https://github.com/echasnovski/mini.test/archive/v0.15.0.zip";
|
||||
sha256 = "02zslska1g4ixy51slbvlxbjzcys0spc4wh200q8mwv4ipiignrn";
|
||||
};
|
||||
|
||||
disabled = luaOlder "5.1";
|
||||
|
||||
meta = {
|
||||
homepage = "https://github.com/echasnovski/mini.test";
|
||||
description = "Test neovim plugins. Part of the mini.nvim suite.";
|
||||
license.fullName = "MIT";
|
||||
};
|
||||
}) {};
|
||||
|
||||
moonscript = callPackage({ argparse, buildLuarocksPackage, fetchFromGitHub, lpeg, luaOlder, luafilesystem }:
|
||||
buildLuarocksPackage {
|
||||
pname = "moonscript";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue