neovim: fix build dependencies (#33935)

Buildin neovim@0.8.0 complains (for me) about Lua's lpeg and mpack
packages not being available at build time. Removing the link-only
setting in the dependencies for these two packages fixes the build for
me.
This commit is contained in:
Matthias Wolf 2022-11-16 09:30:08 -05:00 committed by GitHub
parent d18cccf7c5
commit 26a0384171
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -99,8 +99,8 @@ class Neovim(CMakePackage):
depends_on("gettext", type=("build", "link"))
depends_on("gperf", type="link")
depends_on("jemalloc", type="link", when="platform=linux")
depends_on("lua-lpeg", type="link")
depends_on("lua-mpack", type="link")
depends_on("lua-lpeg")
depends_on("lua-mpack")
depends_on("libiconv", type="link")
depends_on("libtermkey", type="link")
depends_on("libuv", type="link")