ngz pushed a commit to branch master
in repository guix.
commit 4ec2b4747878877cb0f50df8c4127bb6044cdb93
Author: Spencer King <[email protected]>
AuthorDate: Tue Aug 20 10:24:00 2024 +0200
gnu: Add emacs-tinysegmenter.
* gnu/packages/emacs-xyz.scm (emacs-tinysegmenter): New variable.
Signed-off-by: Nicolas Goaziou <[email protected]>
Change-Id: I7f161421b25e5e2e1e127a437ead99fa6dcc24c2
---
gnu/packages/emacs-xyz.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 51e9065650..e48ba5bfb4 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -145,6 +145,7 @@
;;; Copyright © 2024 Daniel Szmulewicz <[email protected]>
;;; Copyright © 2024 Ashish SHUKLA <[email protected]>
;;; Copyright © 2024 Artyom V. Poptsov <[email protected]>
+;;; Copyright © 2024 Spencer King <[email protected]>
;;;
;;; This file is part of GNU Guix.
@@ -14819,6 +14820,28 @@ provides the following features:
@end itemize")
(license license:gpl3+)))
+(define-public emacs-tinysegmenter
+ (let ((commit "872134704bd25c13a4c59552433da4c6881b5230"))
+ (package
+ (name "emacs-tinysegmenter")
+ (version "0.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/myuhe/tinysegmenter.el")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1n8cn6mr26hgmsm2mkbj5gs6dv61d0pap8ija4g0n1vsibfhzd8j"))))
+ (build-system emacs-build-system)
+ (home-page "https://github.com/myuhe/tinysegmenter.el")
+ (synopsis "Compact Japanese tokenizer in Emacs Lisp")
+ (description
+ "This package provides functions for tokenizing Japanese text in
+Emacs buffers.")
+ (license license:bsd-3))))
+
(define-public emacs-markdown-mode
(package
(name "emacs-markdown-mode")