lua-penlight: dev-1 → 1.11.0-1

Upstream is working on some major deprecations, being on a HEAD commit
will not be a good plan going forward.
Remove double `busted` in `checkInputs` - keep only 1.
mullvad-ns
Caleb Maclennan 3 years ago committed by Doron Behar
parent 07557e3b49
commit 9d753f2704
  1. 2
      maintainers/scripts/luarocks-packages.csv
  2. 12
      pkgs/development/lua-modules/generated-packages.nix

@ -75,7 +75,7 @@ mediator_lua,,,,,,
mpack,,,,,,
moonscript,,,,,,arobyn
nvim-client,https://github.com/neovim/lua-client.git,,,,,
penlight,https://github.com/Tieske/Penlight.git,,,,,
penlight,https://github.com/lunarmodules/Penlight.git,,,,,alerque
plenary.nvim,https://github.com/nvim-lua/plenary.nvim.git,,,,lua5_1,
rapidjson,https://github.com/xpol/lua-rapidjson.git,,,,,
readline,,,,,,

1 name src ref server version luaversion maintainers
75 mpack
76 moonscript arobyn
77 nvim-client https://github.com/neovim/lua-client.git
78 penlight https://github.com/Tieske/Penlight.git https://github.com/lunarmodules/Penlight.git alerque
79 plenary.nvim https://github.com/nvim-lua/plenary.nvim.git lua5_1
80 rapidjson https://github.com/xpol/lua-rapidjson.git
81 readline

@ -1957,15 +1957,18 @@ nvim-client = buildLuarocksPackage {
penlight = buildLuarocksPackage {
pname = "penlight";
version = "dev-1";
version = "1.11.0-1";
knownRockspec = (fetchurl {
url = "https://luarocks.org/penlight-1.11.0-1.rockspec";
sha256 = "1sjhnywvamyi9fadhra5pw2an1rhy2hk2byfxmr3n5wi0xrqv004";
}).outPath;
src = fetchgit ( removeAttrs (builtins.fromJSON ''{
"url": "https://github.com/lunarmodules/penlight.git",
"rev": "e3712f00fae09a166dd62540b677600165d5bcd7",
"date": "2021-08-18T21:37:47+02:00",
"path": "/nix/store/i70ndw8qhvcm828ifb3vyj08y22xp0ka-penlight",
"sha256": "19n9xqkb4hlak0k7hamk4ixwjvyxslsnyh1zjazdzrl8n736xhkl",
"fetchSubmodules": true,
"fetchSubmodules": false,
"deepClone": false,
"leaveDotGit": false
}
@ -1973,12 +1976,13 @@ penlight = buildLuarocksPackage {
disabled = (luaOlder "5.1");
propagatedBuildInputs = [ lua luafilesystem ];
checkInputs = [ busted busted ];
checkInputs = [ busted ];
doCheck = false;
meta = {
homepage = "https://lunarmodules.github.io/penlight";
description = "Lua utility libraries loosely based on the Python standard libraries";
maintainers = with lib.maintainers; [ alerque ];
license.fullName = "MIT/X11";
};
};

Loading…
Cancel
Save