mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add emacs-navi-mode.
* gnu/packages/emacs.scm (emacs-navi-mode): New public variable.
This commit is contained in:
parent
9b876c6916
commit
9f2b572eb2
1 changed files with 25 additions and 0 deletions
|
@ -9239,3 +9239,28 @@ (define-public emacs-know-your-http-well
|
|||
(synopsis "Meaning of HTTP headers codes")
|
||||
(description "Meaning of HTTP headers codes.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-navi-mode
|
||||
(let ((commit "c1d38e8237f4e14af020a0b7d4f118ea198ab674"))
|
||||
(package
|
||||
(name "emacs-navi-mode")
|
||||
(version (git-version "2.0" "1" commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/alphapapa/navi.git")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0jj5spk14hgb7zb1cd2n8whcw4k1kd5zb6llwj96v178yaws7l8k"))))
|
||||
(build-system emacs-build-system)
|
||||
(propagated-inputs
|
||||
`(("emacs-outshine" ,emacs-outshine)
|
||||
("emacs-outorg" ,emacs-outorg)))
|
||||
(home-page "https://github.com/alphapapa/navi")
|
||||
(synopsis "Emacs major-mode for easy buffer-navigation")
|
||||
(description
|
||||
"This package provides an Emacs major-mode for easy buffer-navigation")
|
||||
(license license:gpl3+))))
|
||||
|
|
Loading…
Reference in a new issue