guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: gnu: Add emacs-noman.


From: guix-commits
Subject: 02/02: gnu: Add emacs-noman.
Date: Mon, 15 Apr 2024 06:10:48 -0400 (EDT)

ngz pushed a commit to branch master
in repository guix.

commit dc0d7dae16bf29fa2dedee01862625fd32e1dfbc
Author: Suhail Singh <suhailsingh247@gmail.com>
AuthorDate: Thu Apr 11 19:49:49 2024 -0400

    gnu: Add emacs-noman.
    
    * gnu/packages/emacs-xyz.scm (emacs-noman): New variable.
    
    Change-Id: I4ef3de3723025832c6b6eae47de67c3377366602
    Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
 gnu/packages/emacs-xyz.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index bf2b622f92..98d41c223e 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -5445,6 +5445,27 @@ a single buffer.")
 Lisp developers who want to write macros with convenience.")
     (license license:gpl3+)))
 
+(define-public emacs-noman
+  (package
+    (name "emacs-noman")
+    (version "0.3")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/andykuszyk/noman.el";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "04hvh816a0dvakgn22lxzw8qjmvc8grb5nhg1b5w99j5606ljqcl"))))
+    (build-system emacs-build-system)
+    (synopsis "Emacs package for browsing CLI command docs without man pages")
+    (description
+     "Noman is an Emacs package that parses command line help from flags like
+@code{--help}, and presents it in an easy-to-navigate Emacs buffer.")
+    (home-page "https://github.com/andykuszyk/noman.el";)
+    (license license:gpl3+)))
+
 (define-public emacs-tablist
   (package
     (name "emacs-tablist")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]