aboutsummaryrefslogtreecommitdiff
path: root/crn/packages
diff options
context:
space:
mode:
Diffstat (limited to 'crn/packages')
-rw-r--r--crn/packages/tree-sitter.scm4
-rw-r--r--crn/packages/vim.scm8
2 files changed, 7 insertions, 5 deletions
diff --git a/crn/packages/tree-sitter.scm b/crn/packages/tree-sitter.scm
index 91f91a9..ee13b80 100644
--- a/crn/packages/tree-sitter.scm
+++ b/crn/packages/tree-sitter.scm
@@ -11,7 +11,7 @@
(define-public tree-sitter
(package
(name "tree-sitter")
- (version "0.24.3") ;untagged
+ (version "0.24.7") ;untagged
(source (origin
(method git-fetch)
(uri (git-reference
@@ -20,7 +20,7 @@
(file-name (git-file-name name version))
(sha256
(base32
- "1pn1k2ch14y48718l7s21rz5alqgdw1bis25r9x4rm6zac7kiy6q"))
+ "1shg4ylvshs9bf42l8zyskfbkpzpssj6fhi3xv1incvpcs2c1fcw"))
(modules '((guix build utils)))
(snippet #~(begin
;; Remove bundled ICU parts
diff --git a/crn/packages/vim.scm b/crn/packages/vim.scm
index 402cdcc..b109c6b 100644
--- a/crn/packages/vim.scm
+++ b/crn/packages/vim.scm
@@ -6,6 +6,7 @@
#:use-module (guix git-download)
#:use-module (guix build-system cmake)
#:use-module (gnu packages)
+ #:use-module (gnu packages commencement)
#:use-module (gnu packages gettext)
#:use-module (gnu packages gperf)
#:use-module (gnu packages jemalloc)
@@ -18,7 +19,7 @@
(define-public neovim
(package
(name "neovim")
- (version "0.10.2")
+ (version "0.10.3")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -27,7 +28,7 @@
(file-name (git-file-name name version))
(sha256
(base32
- "0r5mjfsgrllxi44i9k6lb8b99rpzrwhkg18aiqmby8wwzflbqdy3"))))
+ "01646f9wa47dmpcx8gpgzaxhz8bm6z44y9m9ixiwrw2dk1lsilcs"))))
(build-system cmake-build-system)
(arguments
(list #:modules
@@ -85,6 +86,7 @@
libtermkey
libvterm
unibilium
+ gcc-toolchain
jemalloc
(if (member (if (%current-target-system)
(gnu-triplet->nix-system (%current-target-system))
@@ -96,7 +98,7 @@
lua5.1-lpeg
lua5.1-bitop
lua5.1-libmpack
- (specification->package "tree-sitter@0.24.3")))
+ (specification->package "tree-sitter@0.24.7")))
(native-inputs (list pkg-config gettext-minimal gperf))
(home-page "https://neovim.io")
(synopsis "Fork of vim focused on extensibility and agility")