luaPackages.luaposix: 34.1.1-1 -> 36.3-1 (#494581)

This commit is contained in:
Matthieu Coudron 2026-02-27 21:55:08 +00:00 committed by GitHub
commit 4f97130945
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 12 additions and 10 deletions

View file

@ -85,7 +85,7 @@ lualdap,,,,,,aanderse
lualine.nvim,,,https://luarocks.org/dev,,,
lualogging,,,,,,
luaossl,,,,,5.1,
luaposix,,,,34.1.1-1,,lblasc
luaposix,,,,,,lblasc
luaprompt,,,,,,Freed-Wu
luarepl,,,,,,
luarocks,,,,,,mrcjkb teto

1 name rockspec ref server version luaversion maintainers
85 lualine.nvim https://luarocks.org/dev
86 lualogging
87 luaossl 5.1
88 luaposix 34.1.1-1 lblasc
89 luaprompt Freed-Wu
90 luarepl
91 luarocks mrcjkb teto

View file

@ -2811,7 +2811,6 @@ final: prev: {
luaposix = callPackage (
{
bit32,
buildLuarocksPackage,
fetchurl,
fetchzip,
@ -2820,19 +2819,18 @@ final: prev: {
}:
buildLuarocksPackage {
pname = "luaposix";
version = "34.1.1-1";
version = "36.3-1";
knownRockspec =
(fetchurl {
url = "mirror://luarocks/luaposix-34.1.1-1.rockspec";
sha256 = "0hx6my54axjcb3bklr991wji374qq6mwa3ily6dvb72vi2534nwz";
url = "mirror://luarocks/luaposix-36.3-1.rockspec";
sha256 = "0jwah6b1bxzck29zxbg479zm1sqmg7vafh7rrkfpibdbwnq01yzb";
}).outPath;
src = fetchzip {
url = "http://github.com/luaposix/luaposix/archive/v34.1.1.zip";
sha256 = "0863r8c69yx92lalj174qdhavqmcs2cdimjim6k55qj9yn78v9zl";
url = "http://github.com/luaposix/luaposix/archive/v36.3.zip";
sha256 = "0k05mpscsqx1yd5vy126brzc35xk55nck0g7m91vrbvvq3bcg824";
};
disabled = luaOlder "5.1" || luaAtLeast "5.4";
propagatedBuildInputs = [ bit32 ];
disabled = luaOlder "5.1" || luaAtLeast "5.5";
meta = {
homepage = "http://github.com/luaposix/luaposix/";

View file

@ -605,13 +605,17 @@ in
};
});
luaposix = prev.luaposix.overrideAttrs (_: {
luaposix = prev.luaposix.overrideAttrs (old: {
externalDeps = [
{
name = "CRYPT";
dep = libxcrypt;
}
];
propagatedBuildInputs = (old.propagatedBuildInputs or [ ]) ++ [
final.bit32
final.std-normalize
];
});
luaprompt = prev.luaprompt.overrideAttrs (old: {