luaPackages.lpty: 1.2.1 -> 1.2.2 generated
This commit is contained in:
parent
ce63fd4381
commit
c84a431624
@ -7,6 +7,7 @@ fifo
|
||||
inspect
|
||||
lgi
|
||||
lpeg_patterns
|
||||
lpty
|
||||
lrexlib-gnu,
|
||||
lrexlib-posix,
|
||||
ltermbox,
|
||||
|
|
@ -190,6 +190,26 @@ lpeg_patterns = buildLuarocksPackage {
|
||||
};
|
||||
};
|
||||
};
|
||||
lpty = buildLuarocksPackage {
|
||||
pname = "lpty";
|
||||
version = "1.2.2-1";
|
||||
|
||||
src = fetchurl {
|
||||
url = https://luarocks.org/lpty-1.2.2-1.src.rock;
|
||||
sha256 = "1vxvsjgjfirl6ranz6k4q4y2dnxqh72bndbk400if22x8lqbkxzm";
|
||||
};
|
||||
disabled = ( luaOlder "5.1");
|
||||
propagatedBuildInputs = [lua ];
|
||||
buildType="make";
|
||||
|
||||
meta = {
|
||||
homepage = "http://www.tset.de/lpty/";
|
||||
description="A simple facility for lua to control other programs via PTYs.";
|
||||
license = {
|
||||
fullName = "MIT";
|
||||
};
|
||||
};
|
||||
};
|
||||
lrexlib-gnu = buildLuarocksPackage {
|
||||
pname = "lrexlib-gnu";
|
||||
version = "2.9.0-1";
|
||||
|
@ -384,34 +384,6 @@ with self; {
|
||||
};
|
||||
};
|
||||
|
||||
lpty = buildLuaPackage rec {
|
||||
version = "1.2.1";
|
||||
name = "lpty-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.tset.de/downloads/lpty-${version}-1.tar.gz";
|
||||
sha256 = "0rgvbpymcgdkzdwfag607xfscs9xyqxg0dj0qr5fv906mi183gs6";
|
||||
};
|
||||
|
||||
preBuild = ''
|
||||
makeFlagsArray=(
|
||||
INST_LIBDIR="$out/lib/lua/${lua.luaversion}"
|
||||
INST_LUADIR="$out/share/lua/${lua.luaversion}"
|
||||
LUA_BINDIR="${lua}/bin"
|
||||
LUA_INCDIR="-I${lua}/include"
|
||||
LUA_LIBDIR="-L${lua}/lib"
|
||||
);
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "PTY control for Lua";
|
||||
homepage = "http://www.tset.de/lpty";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ vyp ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
};
|
||||
|
||||
lua-iconv = buildLuaPackage rec {
|
||||
name = "lua-iconv-${version}";
|
||||
version = "7";
|
||||
|
Loading…
Reference in New Issue
Block a user