[neovim] add utf8proc dependency (#46064)

I believe utf8proc was added as a neovim dependency in neovim/neovim#26165
and is only in the master branch.
This commit is contained in:
Asher Mancinelli 2024-09-02 03:28:30 -04:00 committed by GitHub
parent 654bf45c01
commit 1f8a6d8e8b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -143,6 +143,8 @@ class Neovim(CMakePackage):
depends_on("cmake@3.13:", type="build") depends_on("cmake@3.13:", type="build")
depends_on("libvterm@0.3.3:") depends_on("libvterm@0.3.3:")
depends_on("tree-sitter@0.20.9:") depends_on("tree-sitter@0.20.9:")
with when("@master"):
depends_on("utf8proc", type="link")
# Support for `libvterm@0.2:` has been added in neovim@0.8.0 # Support for `libvterm@0.2:` has been added in neovim@0.8.0
# term: Add support for libvterm >= 0.2 (https://github.com/neovim/neovim/releases/tag/v0.8.0) # term: Add support for libvterm >= 0.2 (https://github.com/neovim/neovim/releases/tag/v0.8.0)