1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-29 13:31:16 +02:00

gnu: Add emacs-rtfm-mode.

* gnu/package/emacs-xyz.scm (emacs-rtfm-mode): New variable.

Merges guix/guix!6136

Change-Id: Ieb22734828c57aec6405ff37b2fda0486df821c7
Signed-off-by: Cayetano Santos <csantosb@inventati.org>
This commit is contained in:
Noé Lopez
2026-02-04 22:27:21 +01:00
committed by Cayetano Santos
parent f75080db69
commit 33ee29bc87

View File

@@ -16227,6 +16227,29 @@ line program.")
requests library that uses the url library.")
(license license:gpl2+))))
(define-public emacs-rtfm-mode
(package
(name "emacs-rtfm-mode")
(version "0.1.1")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://codeberg.org/lilyp/emacs-rtfm-mode.git")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"0da5wxj88davv47zj53mp2i6g742j53ry1nr81jclij3anx0k2al"))))
(build-system emacs-build-system)
(arguments (list #:tests? #f)) ;no tests
(home-page "https://codeberg.org/lilyp/emacs-rtfm-mode")
(synopsis "Address gender discrimination in documentation")
(description "This package provides a minor mode for reading the feminist
manuals, inspired by a browser extension of the same name. It replaces
occurences of gendered language with gender-neutral one and provides
means of counting their occurences.")
(license license:gpl3+)))
(define-public emacs-ruby-electric
(let ((revision "0")
(commit "c53376da891713e0c49f01aad2ff64d4fbb0b812"))