luaPackages.luacov: init at 0.13.0-1

It is needed to run luarocks test.
wip/yesman
Matthieu Coudron 5 years ago committed by Matthieu Coudron
parent 0c36fa1c8c
commit 73c64f0f38
  1. 1
      maintainers/scripts/luarocks-packages.csv
  2. 19
      pkgs/development/lua-modules/generated-packages.nix

@ -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

@ -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";

Loading…
Cancel
Save