lua-luaposix: add missing libxcrypt dependency (#47395)

This commit is contained in:
Harmen Stoppels 2024-11-04 09:47:47 +01:00 committed by GitHub
parent 395c911689
commit 0acd6ae7b2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -23,6 +23,7 @@ class LuaLuaposix(LuaPackage):
version("33.4.0", sha256="e66262f5b7fe1c32c65f17a5ef5ffb31c4d1877019b4870a5d373e2ab6526a21")
version("33.2.1", sha256="4fb34dfea67f4cf3194cdecc6614c9aea67edc3c4093d34137669ea869c358e1")
depends_on("c", type="build") # generated
depends_on("c", type="build")
depends_on("libxcrypt", when="platform=linux")
depends_on("lua-bit32", when="^lua-lang@5.1")