luaPackages.luarepl: init at 0.9-1

This commit is contained in:
Matthieu Coudron 2020-01-24 20:58:58 +01:00
parent 460224d4cd
commit a032a3ad90
2 changed files with 25 additions and 3 deletions

View file

@ -52,6 +52,7 @@ luafilesystem,,,1.7.0-2,,flosse vcunat
lualogging,,,,,
luaossl,,,,lua5_1,vcunat
luaposix,,,,,vyp lblasc
luarepl,,,,,
luasec,,,,,flosse
luasocket,,,,,
luasql-sqlite3,,,,,vyp

1 # nix name luarocks name server version luaversion maintainers
52 lualogging
53 luaossl lua5_1 vcunat
54 luaposix vyp lblasc
55 luarepl
56 luasec flosse
57 luasocket
58 luasql-sqlite3 vyp

View file

@ -1083,9 +1083,30 @@ luaposix = buildLuarocksPackage {
homepage = "https://github.com/luaposix/luaposix/";
description = "Lua bindings for POSIX";
maintainers = with maintainers; [ vyp lblasc ];
license = {
fullName = "MIT/X11";
};
license.fullName = "MIT/X11";
};
};
luarepl = buildLuarocksPackage {
pname = "luarepl";
version = "0.9-1";
knownRockspec = (fetchurl {
url = mirror://luarocks/luarepl-0.9-1.rockspec;
sha256 = "1409lanxv4s8kq5rrh46dvld77ip33qzfn3vac3i9zpzbmgb5i8z";
}).outPath;
src = fetchurl {
url = https://github.com/hoelzro/lua-repl/archive/0.9.tar.gz;
sha256 = "04xka7b84d9mrz3gyf8ywhw08xp65v8jrnzs8ry8k9540aqs721w";
};
disabled = (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = with stdenv.lib; {
homepage = "https://github.com/hoelzro/lua-repl";
description = "A reusable REPL component for Lua, written in Lua";
license.fullName = "MIT/X11";
};
};
luasec = buildLuarocksPackage {