lua*Packages.luautf8: init at 0.1.1-1

Dependency for mudlet >= 4.0
This commit is contained in:
Philipp 2019-09-07 12:23:44 +02:00 committed by Matthieu Coudron
parent d3983caf45
commit fc250d64e5
2 changed files with 21 additions and 0 deletions

View file

@ -52,6 +52,7 @@ luasocket,,,,,
luasql-sqlite3,,,,,vyp
luassert,,,,,
luasystem,,,,,
luautf8,,,,,pstn
luazip,,,,,
luuid,,,,,
luv,,,,,

1 # nix name luarocks name server version luaversion maintainers
52 luasql-sqlite3 vyp
53 luassert
54 luasystem
55 luautf8 pstn
56 luazip
57 luuid
58 luv

View file

@ -1106,6 +1106,26 @@ luasystem = buildLuarocksPackage {
};
};
};
luautf8 = buildLuarocksPackage {
pname = "luautf8";
version = "0.1.1-1";
src = fetchurl {
url = https://luarocks.org/luautf8-0.1.1-1.src.rock;
sha256 = "1832ilrlddh4h7ayx4l9j7z1p8c2hk5yr96cpxjjrmirkld23aji";
};
disabled = (luaOlder "5.1");
propagatedBuildInputs = [ lua ];
meta = with stdenv.lib; {
homepage = "http://github.com/starwing/luautf8";
description = "A UTF-8 support module for Lua";
maintainers = with maintainers; [ pstn ];
license = {
fullName = "MIT";
};
};
};
luazip = buildLuarocksPackage {
pname = "luazip";
version = "1.2.7-1";