diff options
author | John Khoo <johnkhootf@gmail.com> | 2025-04-30 04:42:49 +0800 |
---|---|---|
committer | Hilton Chain <hako@ultrarare.space> | 2025-07-29 21:32:20 +0800 |
commit | 1ca1a45b382ed1282eb0fa8fb3fa851a976b4bba (patch) | |
tree | a3eafa05f8abfbbe41a0d390f2b3202e0903758d | |
parent | 5f1b5795ca2296a57e17f3791e03cd1ff70ff892 (diff) |
gnu: neovim: Update to 0.11.1.
* gnu/packages/vim.scm (neovim): Update to 0.11.1.
[inputs]: Add utf8proc.
Change-Id: I278b533b2ff13e2b40652ce451c9924fc729df5a
Signed-off-by: Hilton Chain <hako@ultrarare.space>
Modified-by: Hilton Chain <hako@ultrarare.space>
-rw-r--r-- | gnu/packages/vim.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm index 89a001b51c..c78c2356bc 100644 --- a/gnu/packages/vim.scm +++ b/gnu/packages/vim.scm @@ -79,6 +79,7 @@ #:use-module (gnu packages shells) #:use-module (gnu packages tcl) #:use-module (gnu packages text-editors) + #:use-module (gnu packages textutils) #:use-module (gnu packages terminals) #:use-module (gnu packages tree-sitter) #:use-module (gnu packages xdisorg) @@ -799,7 +800,7 @@ is based on Vim's builtin plugin support.") (define-public neovim (package (name "neovim") - (version "0.9.5") + (version "0.11.1") (source (origin (method git-fetch) (uri (git-reference @@ -808,7 +809,7 @@ is based on Vim's builtin plugin support.") (file-name (git-file-name name version)) (sha256 (base32 - "1j3z7jay0m6g06v04falrzr062g07xr4svbrc3hywlqi2h6rrvk5")))) + "0arypdiycmss5g9wav21hfdc384v1ly82jnsc32zincl2y3f628q")))) (build-system cmake-build-system) (arguments (list #:modules @@ -866,6 +867,7 @@ is based on Vim's builtin plugin support.") libtermkey libvterm unibilium + utf8proc jemalloc (if (member (if (%current-target-system) (gnu-triplet->nix-system (%current-target-system)) |