luaPackages.linenoise: init at 0.9-1

This commit is contained in:
Matthieu Coudron 2020-01-24 18:18:30 +01:00
parent 5365e3650d
commit bc07d117f2
2 changed files with 26 additions and 0 deletions

View file

@ -18,6 +18,7 @@ http,,,,,vcunat
inspect,,,,,
ldoc,,,,,
lgi,,,,,
linenoise,,,,,
ljsyscall,,,,lua5_1,lblasc
lpeg,,,,,vyp
lpeg_patterns,,,,,

1 # nix name luarocks name server version luaversion maintainers
18 inspect
19 ldoc
20 lgi
21 linenoise
22 ljsyscall lua5_1 lblasc
23 lpeg vyp
24 lpeg_patterns

View file

@ -402,6 +402,31 @@ lgi = buildLuarocksPackage {
};
};
};
linenoise = buildLuarocksPackage {
pname = "linenoise";
version = "0.9-1";
knownRockspec = (fetchurl {
url = mirror://luarocks/linenoise-0.9-1.rockspec;
sha256 = "0wic8g0d066pj9k51farsvcdbnhry2hphvng68w9k4lh0zh45yg4";
}).outPath;
src = fetchurl {
url = https://github.com/hoelzro/lua-linenoise/archive/0.9.tar.gz;
sha256 = "177h6gbq89arwiwxah9943i8hl5gvd9wivnd1nhmdl7d8x0dn76c";
};
disabled = (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = with stdenv.lib; {
homepage = "https://github.com/hoelzro/lua-linenoise";
description = "A binding for the linenoise command line library";
license = {
fullName = "MIT/X11";
};
};
};
ljsyscall = buildLuarocksPackage {
pname = "ljsyscall";
version = "0.12-1";