From 4eabeccaf2aaf879e3cc829899c143aaf55d082b Mon Sep 17 00:00:00 2001 From: Christopher Lemmer Webber Date: Sun, 25 Oct 2020 17:21:56 -0400 Subject: [PATCH] gnu: Add emacs-lojban-mode. * gnu/packages/emacs-xyz.scm (emacs-lojban-mode): New variable. --- gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index ce5b8ac4ca..107bd6a9bf 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -25178,3 +25178,25 @@ service.") "lojban.el is an emacs library of functions, variables, regexps and interactive commands for handling lojban text.") (license license:gpl2+))) + +(define-public emacs-lojban-mode + (package + (name "emacs-lojban-mode") + (version "0.7") + (source + (origin + (method url-fetch) + (uri "https://www.emacswiki.org/emacs/download/lojban-mode.el") + (sha256 (base32 "1l8wq3hzr77k5ibqb2ghzjskfvjhgfvwan1v8gma4msi5mjfiv30")))) + (build-system emacs-build-system) + (home-page "https://www.emacswiki.org/emacs/lojban-mode.el") + (synopsis "Emacs minor mode for lojban text") + (propagated-inputs + `(("emacs-lojban" ,emacs-lojban))) + (description + "lojban-mode provides a specialized minor mode for lojban text. +It includes syntactical highlighting for lojban words. +The three basic word types (cmavo, cmene, and brivla), sentence +separators and attitudinal indicators are highlighted with +different faces.") + (license license:gpl2+))) -- 2.28.0