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:
parent
d18cccf7c5
commit
26a0384171
@ -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")
|
||||
|
Loading…
Reference in New Issue
Block a user