mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add emacs-hierarchy.
* gnu/packages/emacs.scm (emacs-hierarchy): New public variable.
This commit is contained in:
parent
d7403c126c
commit
20b5b16ee9
1 changed files with 21 additions and 0 deletions
|
@ -8405,3 +8405,24 @@ (define-public emacs-rainbow-blocks
|
|||
successive level is highlighted in a different color. This makes it easy to
|
||||
orient yourself in the code, and tell which statements are at a given level.")
|
||||
(license license:gpl3+))))
|
||||
|
||||
(define-public emacs-hierarchy
|
||||
(package
|
||||
(name "emacs-hierarchy")
|
||||
(version "0.7.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"https://github.com/DamienCassou/hierarchy/archive/"
|
||||
"v" version ".tar.gz"))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1a463v5zk6zis2p8cs4mads3iyxh266yahi6j6y0paggfl2yhkc8"))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://github.com/DamienCassou/hierarchy")
|
||||
(synopsis "Library to create and display hierarchy structures")
|
||||
(description "This package provides an Emacs library to create, query,
|
||||
navigate and display hierarchy structures.")
|
||||
(license license:gpl3+)))
|
||||
|
|
Loading…
Reference in a new issue