Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0c36fa1c8c99
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 73c64f0f3889
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Oct 14, 2019

  1. luaPackages.luacov: init at 0.13.0-1

    It is needed to run luarocks test.
    teto authored and Matthieu Coudron committed Oct 14, 2019
    Copy the full SHA
    73c64f0 View commit details
Showing with 20 additions and 0 deletions.
  1. +1 −0 maintainers/scripts/luarocks-packages.csv
  2. +19 −0 pkgs/development/lua-modules/generated-packages.nix
1 change: 1 addition & 0 deletions maintainers/scripts/luarocks-packages.csv
Original file line number Diff line number Diff line change
@@ -37,6 +37,7 @@ lua-zlib,,,,,koral
lua_cliargs,,,,,
luabitop,,,,,
luacheck,,,,,
luacov,,,,,
luadbi,,,,,
luadbi-mysql,,,,,
luadbi-postgresql,,,,,
19 changes: 19 additions & 0 deletions pkgs/development/lua-modules/generated-packages.nix
Original file line number Diff line number Diff line change
@@ -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";