luaPackages.middleclass: init at 4.1.1-0
This commit is contained in:
parent
e5f6200d16
commit
c02ab0ce68
2 changed files with 24 additions and 0 deletions
|
@ -89,6 +89,7 @@ lyaml,,,,,,lblasc
|
||||||
magick,,,,,,donovanglover
|
magick,,,,,,donovanglover
|
||||||
markdown,,,,,,
|
markdown,,,,,,
|
||||||
mediator_lua,,,,,,
|
mediator_lua,,,,,,
|
||||||
|
middleclass,,,,,,
|
||||||
mpack,,,,,,
|
mpack,,,,,,
|
||||||
moonscript,https://github.com/leafo/moonscript.git,dev-1,,,,arobyn
|
moonscript,https://github.com/leafo/moonscript.git,dev-1,,,,arobyn
|
||||||
nvim-client,https://github.com/neovim/lua-client.git,,,,,
|
nvim-client,https://github.com/neovim/lua-client.git,,,,,
|
||||||
|
|
|
|
@ -2501,6 +2501,29 @@ buildLuarocksPackage {
|
||||||
};
|
};
|
||||||
}) {};
|
}) {};
|
||||||
|
|
||||||
|
middleclass = callPackage({ luaOlder, buildLuarocksPackage, fetchurl, lua }:
|
||||||
|
buildLuarocksPackage {
|
||||||
|
pname = "middleclass";
|
||||||
|
version = "4.1.1-0";
|
||||||
|
knownRockspec = (fetchurl {
|
||||||
|
url = "mirror://luarocks/middleclass-4.1.1-0.rockspec";
|
||||||
|
sha256 = "10xzs48lr1dy7cx99581r956gl16px0a9gbdlfar41n19r96mhb1";
|
||||||
|
}).outPath;
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/kikito/middleclass/archive/v4.1.1.tar.gz";
|
||||||
|
sha256 = "11ahv0b9wgqfnabv57rb7ilsvn2vcvxb1czq6faqrsqylvr5l7nh";
|
||||||
|
};
|
||||||
|
|
||||||
|
disabled = (luaOlder "5.1");
|
||||||
|
propagatedBuildInputs = [ lua ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = "https://github.com/kikito/middleclass";
|
||||||
|
description = "A simple OOP library for Lua";
|
||||||
|
license.fullName = "MIT";
|
||||||
|
};
|
||||||
|
}) {};
|
||||||
|
|
||||||
moonscript = callPackage({ lpeg, luaOlder, fetchgit, lua, buildLuarocksPackage, argparse, luafilesystem }:
|
moonscript = callPackage({ lpeg, luaOlder, fetchgit, lua, buildLuarocksPackage, argparse, luafilesystem }:
|
||||||
buildLuarocksPackage {
|
buildLuarocksPackage {
|
||||||
pname = "moonscript";
|
pname = "moonscript";
|
||||||
|
|
Loading…
Reference in a new issue