luaPackages.vstruct: init at 2.0.2-1

This commit is contained in:
Matthieu Coudron 2020-01-24 21:19:22 +01:00
parent a032a3ad90
commit 84a2134baa
2 changed files with 18 additions and 3 deletions

View file

@ -75,3 +75,4 @@ std__debug,std._debug,,,,
std_normalize,std.normalize,,,,
stdlib,,,,,vyp
pulseaudio,,,,,doronbehar
vstruct,,,,,

1 # nix name luarocks name server version luaversion maintainers
75 std_normalize std.normalize
76 stdlib vyp
77 pulseaudio doronbehar
78 vstruct

View file

@ -1536,9 +1536,23 @@ stdlib = buildLuarocksPackage {
homepage = "http://lua-stdlib.github.io/lua-stdlib";
description = "General Lua Libraries";
maintainers = with maintainers; [ vyp ];
license = {
fullName = "MIT/X11";
};
license.fullName = "MIT/X11";
};
};
vstruct = buildLuarocksPackage {
pname = "vstruct";
version = "2.0.2-1";
src = fetchurl {
url = mirror://luarocks/vstruct-2.0.2-1.src.rock;
sha256 = "05k1685618wh7vg8av92mh1i1rjqg15x12gifbp9kyqzc2nk3kzq";
};
disabled = (luaOlder "5.1") || (luaAtLeast "5.3");
propagatedBuildInputs = [ lua ];
meta = with stdenv.lib; {
homepage = "https://github.com/ToxicFrog/vstruct";
description = "Lua library to manipulate binary data";
};
};