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.
This commit is contained in:
parent
07557e3b49
commit
9d753f2704
2 changed files with 9 additions and 5 deletions
|
@ -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,,,,,,
|
||||
|
|
|
|
@ -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…
Reference in a new issue