mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add emacs-noman.
* gnu/packages/emacs-xyz.scm (emacs-noman): New variable. Change-Id: I4ef3de3723025832c6b6eae47de67c3377366602 Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
91239079f3
commit
dc0d7dae16
1 changed files with 21 additions and 0 deletions
|
@ -5445,6 +5445,27 @@ (define-public emacs-mmt
|
|||
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")
|
||||
|
|
Loading…
Reference in a new issue