[bug#69896,v4] gnu: Add emacs-noman.
Commit Message
* gnu/packages/emacs-xyz.scm (emacs-noman): New variable.
Change-Id: I4ef3de3723025832c6b6eae47de67c3377366602
---
gnu/packages/emacs-xyz.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
base-commit: c1c9d6b3cdf5955f1bf5fded2a0c496ce2e631f1
Comments
Hello,
"Suhail Singh" <suhailsingh247@gmail.com> writes:
> * gnu/packages/emacs-xyz.scm (emacs-noman): New variable.
Applied, thank you.
> +(define-public emacs-noman
> + (package
> + (name "emacs-noman")
> + (home-page "https://github.com/andykuszyk/noman.el")
> + (version "0.3")
> + (source
> + (origin
> + (method git-fetch)
> + (uri (git-reference
> + (url home-page)
Nitpick: I admit I am not a huge fan of the "home-page hack", because it
introduces a non-obvious relationship between source and home-page. So
I took the liberty of following standard practices here.
Regards,
@@ -5445,6 +5445,28 @@ (define-public emacs-mmt
Lisp developers who want to write macros with convenience.")
(license license:gpl3+)))
+(define-public emacs-noman
+ (package
+ (name "emacs-noman")
+ (home-page "https://github.com/andykuszyk/noman.el")
+ (version "0.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url home-page)
+ (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
+ "@code{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.")
+ (license license:gpl3+)))
+
(define-public emacs-tablist
(package
(name "emacs-tablist")