mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
luaPackages.linenoise: init at 0.9-1
This commit is contained in:
parent
5365e3650d
commit
bc07d117f2
@ -18,6 +18,7 @@ http,,,,,vcunat
|
||||
inspect,,,,,
|
||||
ldoc,,,,,
|
||||
lgi,,,,,
|
||||
linenoise,,,,,
|
||||
ljsyscall,,,,lua5_1,lblasc
|
||||
lpeg,,,,,vyp
|
||||
lpeg_patterns,,,,,
|
||||
|
|
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user