gnu: Add emacs-tinysegmenter.

* gnu/packages/emacs-xyz.scm (emacs-tinysegmenter): New variable.

Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Change-Id: I7f161421b25e5e2e1e127a437ead99fa6dcc24c2
This commit is contained in:
Spencer King 2024-08-20 10:24:00 +02:00 committed by Nicolas Goaziou
parent 61bf47d00c
commit 4ec2b47478
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -145,6 +145,7 @@
;;; Copyright © 2024 Daniel Szmulewicz <daniel.szmulewicz@gmail.com>
;;; Copyright © 2024 Ashish SHUKLA <ashish.is@lostca.se>
;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
;;; Copyright © 2024 Spencer King <spencer.king@nursiapress.com>
;;;
;;; This file is part of GNU Guix.
@ -14819,6 +14820,28 @@ (define-public emacs-tide
@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")