luaPackages: pin luuid to 20120509-2

This commit is contained in:
Marc Jakobi 2023-12-07 14:16:47 +01:00 committed by Matthieu Coudron
parent df40110ea7
commit 8245a91890
2 changed files with 8 additions and 7 deletions

View file

@ -86,7 +86,7 @@ luautf8,,,,,,pstn
luazip,,,,,,
lua-yajl,,,,,,pstn
lua-iconv,,,,7.0.0,,
luuid,,,,,,
luuid,,,,20120509-2,,
luv,,,,1.44.2-1,,
lush.nvim,https://github.com/rktjmp/lush.nvim,,,,,teto
lyaml,,,,,,lblasc

1 name src ref server version luaversion maintainers
86 luazip
87 lua-yajl pstn
88 lua-iconv 7.0.0
89 luuid 20120509-2
90 luv 1.44.2-1
91 lush.nvim https://github.com/rktjmp/lush.nvim teto
92 lyaml lblasc

View file

@ -2521,19 +2521,20 @@ buildLuarocksPackage {
};
}) {};
luuid = callPackage({ buildLuarocksPackage, fetchurl, lua }:
luuid = callPackage({ buildLuarocksPackage, fetchurl, lua, luaAtLeast, luaOlder}:
buildLuarocksPackage {
pname = "luuid";
version = "20120501-2";
version = "20120509-2";
knownRockspec = (fetchurl {
url = "mirror://luarocks/luuid-20120501-2.rockspec";
sha256 = "1v9k0w6gh9vk3jqx0rqm38jzixa6rww44shgv4ffc26ymfyyvaqz";
url = "mirror://luarocks/luuid-20120509-2.rockspec";
sha256 = "1q2fv25wfbiqn49mqv26gs4pyllch311akcf7jjn27l5ik8ji5b6";
}).outPath;
src = fetchurl {
url = "http://www.tecgraf.puc-rio.br/~lhf/ftp/lua/5.1/luuid.tar.gz";
sha256 = "18wpqdfvyaaj3pjin0i2g64h9bfm31bcrzzfiigyigsx0bx47i0g";
url = "http://www.tecgraf.puc-rio.br/~lhf/ftp/lua/5.2/luuid.tar.gz";
sha256 = "1bfkj613d05yps3fivmz0j1bxf2zkg9g1yl0ifffgw0vy00hpnvm";
};
disabled = (luaOlder "5.2") || (luaAtLeast "5.4");
propagatedBuildInputs = [ lua ];
meta = {