luaPackages.luacov: init at 0.13.0-1

It is needed to run luarocks test.
This commit is contained in:
Matthieu Coudron 2019-10-11 19:56:21 +09:00 committed by Matthieu Coudron
parent 0c36fa1c8c
commit 73c64f0f38
2 changed files with 20 additions and 0 deletions

View file

@ -37,6 +37,7 @@ lua-zlib,,,,,koral
lua_cliargs,,,,,
luabitop,,,,,
luacheck,,,,,
luacov,,,,,
luadbi,,,,,
luadbi-mysql,,,,,
luadbi-postgresql,,,,,

1 # nix name luarocks name server version luaversion maintainers
37 lua_cliargs
38 luabitop
39 luacheck
40 luacov
41 luadbi
42 luadbi-mysql
43 luadbi-postgresql

View file

@ -810,6 +810,25 @@ luacheck = buildLuarocksPackage {
};
};
};
luacov = buildLuarocksPackage {
pname = "luacov";
version = "0.13.0-1";
src = fetchurl {
url = mirror://luarocks/luacov-0.13.0-1.src.rock;
sha256 = "16am0adzr4y64n94f64d4yrz65in8rwa8mmjz1p0k8afm5p5759i";
};
disabled = (luaOlder "5.1") || (luaAtLeast "5.4");
propagatedBuildInputs = [ lua ];
meta = with stdenv.lib; {
homepage = "https://keplerproject.github.io/luacov/";
description = "Coverage analysis tool for Lua scripts";
license = {
fullName = "MIT";
};
};
};
luadbi = buildLuarocksPackage {
pname = "luadbi";
version = "0.7.2-1";