gnu: Add emacs-discourse-mode.

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

Signed-off-by: Ian Eure <ian@retrospec.tv>
This commit is contained in:
Yuval Langer 2025-02-19 13:43:08 +02:00 committed by Ian Eure
parent 256bee7d0b
commit dfc0ac7b1d
No known key found for this signature in database
GPG key ID: 8499AC88F1A71CF2

View file

@ -1613,6 +1613,29 @@ do manually if you wanted to keep the buffers of a project neatly isolated in
separate, named tab groups.")
(license license:gpl3+))))
(define-public emacs-discourse-mode
(package
(name "emacs-discourse-mode")
(version "0.2.4")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://codeberg.org/glenneth/discourse-mode")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0j2f0vclj6zrmk1hxyrrhkcpk74vqvq42g9wjqrjw827yjh2wm65"))))
(build-system emacs-build-system)
(propagated-inputs (list emacs-compat
emacs-markdown-mode
emacs-request))
(home-page "https://codeberg.org/glenneth/discourse-mode")
(synopsis "Emacs package for interacting with Discourse forums")
(description "This package lets you browse categories, view topics, read
posts, and participate in discussions on Discourse, directly from Emacs.")
(license license:gpl3+)))
(define-public emacs-disproject
(package
(name "emacs-disproject")