diff options
author | Christopher R. Nelson <christopher.nelson@languidnights.com> | 2025-07-20 00:19:23 -0400 |
---|---|---|
committer | Christopher R. Nelson <christopher.nelson@languidnights.com> | 2025-07-20 00:19:23 -0400 |
commit | 94ca9b2a4723aea1d04e908746eba9ef1c3bcb2a (patch) | |
tree | 6010c9423dd19385e487a361b7226f4bf1b2bb21 /crn/packages | |
parent | b49beb6e963fef2dfd40ac7de7a581ee4c079037 (diff) |
update neovim to new utf8proc
Diffstat (limited to 'crn/packages')
-rw-r--r-- | crn/packages/vim.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crn/packages/vim.scm b/crn/packages/vim.scm index ccfc23e..75ffb0b 100644 --- a/crn/packages/vim.scm +++ b/crn/packages/vim.scm @@ -14,6 +14,7 @@ #:use-module (gnu packages lua) #:use-module (gnu packages pkg-config) #:use-module (gnu packages serialization) + #:use-module (gnu packages textutils) #:use-module (gnu packages terminals)) (define-public neovim @@ -98,6 +99,7 @@ lua5.1-lpeg lua5.1-bitop lua5.1-libmpack + (specification->package "utf8proc@2.10.0") (specification->package "tree-sitter@0.25.8"))) (native-inputs (list pkg-config gettext-minimal gperf)) (home-page "https://neovim.io") @@ -116,5 +118,3 @@ refactor Vim in order to: ;; Neovim is licensed under the terms of the Apache 2.0 license, ;; except for parts that were contributed under the Vim license. (license (list license:asl2.0 license:vim)))) - -neovim |